1 # $NetBSD: Makefile,v 1.21 2008/10/25 22:27:36 apb Exp $ 2 3 # Makefile for amiga tags file and boot blocks 4 5 TAMIGA= ${SYSDIR}/arch/amiga/tags 6 SAMIGA= ${SYSDIR}/arch/amiga/amiga/*.[ch] ${SYSDIR}/arch/amiga/include/*.h \ 7 ${SYSDIR}/arch/amiga/dev/*.[ch] 8 AAMIGA= ${SYSDIR}/arch/amiga/amiga/*.s 9 10 # Directories in which to place tags links 11 DAMIGA= amiga dev include 12 13 .include "../../kern/Make.tags.inc" 14 15 # Find where m68k source files are for inclusion in tags 16 .include <../m68k/Makefile.inc> 17 18 tags: 19 -echo ${COMM} | xargs ctags -wdtf ${TAMIGA} ${SAMIGA} ${SM68K} 20 egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AAMIGA} ${AM68K} | \ 21 ${TOOL_SED} -e \ 22 "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \ 23 >> ${TAMIGA} 24 sort -o ${TAMIGA} ${TAMIGA} 25 26 links: 27 -for i in ${DAMIGA}; do \ 28 cd ${.CURDIR}/$$i && rm -f tags; ln -s ../tags tags; done 29 30 31 SUBDIR= compile include stand 32 33 .include <bsd.subdir.mk> 34