1 # $NetBSD: Makefile,v 1.3 1999/07/20 08:55:30 dbj Exp $ 2 3 # Makefile for next68k tags file and boot blocks 4 5 # Find where m68k sourc717e files are for inclusion in tags 6 .include <../m68k/Makefile.inc> 7 8 ENEXT68K= ../next68k/TAGS 9 TNEXT68K= ../next68k/tags 10 SNEXT68K= ../next68k/next68k/*.[ch] ../next68k/include/*.h \ 11 ../next68k/dev/*.[ch] 12 ANEXT68K= ../next68k/next68k/*.s 13 14 # Directories in which to place tags links 15 DNEXT68K= dev next68k include 16 17 SYSDIR= ../.. 18 .include "../../kern/Make.tags.inc" 19 20 tags: 21 -ctags -wdtf ${TNEXT68K} ${SNEXT68K} ${SM68K} ${COMM} 22 egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${ANEXT68K} ${AM68K} | \ 23 sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \ 24 >> ${TNEXT68K} 25 sort -o ${TNEXT68K} ${TNEXT68K} 26 27 .ifmake TAGS 28 COMM!= find ${SYSDIR} -name "arch" -prune -o -name "*.[ch]" -print 29 .endif 30 31 TAGS: 32 emacs-etags -o ${ENEXT68K} ${SNEXT68K} ${SM68K} ${COMM} 33 emacs-etags -a -l none \ 34 --regex='/^\(ALT\)?ENTRY\(_NOPROFILE\)?(\([a-zA-Z0-9_]*\))\|^GLOBAL(\([a-zA-Z0-9_]*\))/\3\4/' \ 35 -o ${ENEXT68K} ${ANEXT68K} ${AM68K} 36 37 links: 38 -for i in ${DNEXT68K}; do \ 39 cd $$i && rm -f tags; ln -s ../tags tags; done 40 41 42 SUBDIR= include stand 43 44 .include <bsd.subdir.mk> 45