1 # $NetBSD: Makefile,v 1.37 2009/05/28 18:13:46 dyoung Exp $ 2 3 # Makefile for i386 tags file and boot blocks 4 5 TI386= ${SYSDIR}/arch/i386/tags 6 SI386= ${SYSDIR}/arch/i386/acpi/*.[ch] \ 7 ${SYSDIR}/arch/i386/eisa/*.[ch] \ 8 ${SYSDIR}/arch/i386/i386/*.[ch] \ 9 ${SYSDIR}/arch/i386/include/*.h \ 10 ${SYSDIR}/arch/i386/isa/*.[ch] \ 11 ${SYSDIR}/arch/i386/mca/*.[ch] \ 12 ${SYSDIR}/arch/i386/pci/*.[ch] \ 13 ${SYSDIR}/arch/i386/pnpbios/*.[ch] \ 14 ${SYSDIR}/external/isc/atheros_hal/dist/*.[ch] \ 15 ${SYSDIR}/external/isc/atheros_hal/dist/*/*.[ch] \ 16 ${SYSDIR}/external/isc/atheros_hal/ic/*.[ch] \ 17 ${SYSDIR}/dist/acpica/*.[ch] 18 SI386+= ${SYSDIR}/arch/x86/x86/*.[ch] \ 19 ${SYSDIR}/arch/x86/acpi/*.[ch] \ 20 ${SYSDIR}/arch/x86/include/*.h \ 21 ${SYSDIR}/arch/x86/isa/*.[ch] \ 22 ${SYSDIR}/arch/x86/pci/*.[ch] 23 AI386= ${SYSDIR}/arch/i386/i386/*.[sS] 24 25 # Directories in which to place tags links 26 DI386= i386 eisa isa include pci 27 28 .include "../../kern/Make.tags.inc" 29 30 tags: 31 -rm -f ${TI386} 32 -echo ${SI386} | xargs ctags -wadtf ${TI386} 33 -${FINDCOMM} | xargs ctags -wadtf ${TI386} 34 egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AI386} | \ 35 ${TOOL_SED} -e \ 36 "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \ 37 >> ${TI386} 38 sort -o ${TI386} ${TI386} 39 40 links: 41 -for i in ${DI386}; do \ 42 (cd $$i && rm -f tags; ln -s ../tags tags); done 43 44 45 SUBDIR= compile include stand ../x86/include ../xen/include 46 47 .include <bsd.subdir.mk> 48