2006-11-13 01:44:00 +03:00
|
|
|
# $NetBSD: Makefile,v 1.28 2006/11/12 22:44:00 dyoung Exp $
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-10-11 12:42:02 +04:00
|
|
|
# Makefile for i386 tags file and boot blocks
|
1993-07-04 18:02:53 +04:00
|
|
|
|
1998-11-15 23:36:30 +03:00
|
|
|
TI386= ${SYSDIR}/arch/i386/tags
|
|
|
|
SI386= ${SYSDIR}/arch/i386/i386/*.[ch] ${SYSDIR}/arch/i386/include/*.h \
|
|
|
|
${SYSDIR}/arch/i386/eisa/*.[ch] ${SYSDIR}/arch/i386/isa/*.[ch] \
|
2003-10-26 03:17:46 +03:00
|
|
|
${SYSDIR}/arch/i386/pci/*.[ch] \
|
2006-11-13 01:44:00 +03:00
|
|
|
${SYSDIR}/contrib/dev/ath/*.[ch] \
|
|
|
|
${SYSDIR}/contrib/dev/ath/netbsd/*.[ch] \
|
|
|
|
${SYSDIR}/contrib/dev/ath/public/*.[ch]
|
2006-02-26 06:08:02 +03:00
|
|
|
SI386+= ${SYSDIR}/arch/x86/x86/*.[ch] ${SYSDIR}/arch/x86/include/*.h \
|
|
|
|
${SYSDIR}/arch/x86/isa/*.[ch] \
|
|
|
|
${SYSDIR}/arch/x86/pci/*.[ch]
|
2006-11-13 01:44:00 +03:00
|
|
|
AI386= ${SYSDIR}/arch/i386/i386/*.[sS]
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-10-11 13:12:18 +04:00
|
|
|
# Directories in which to place tags links
|
1998-11-15 23:36:30 +03:00
|
|
|
DI386= i386 eisa isa include pci
|
1997-10-11 12:42:02 +04:00
|
|
|
|
|
|
|
.include "../../kern/Make.tags.inc"
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
tags:
|
2006-11-13 01:44:00 +03:00
|
|
|
-rm -f ${TI386}
|
2001-02-22 07:40:43 +03:00
|
|
|
-echo ${SI386} ${COMM} | xargs ctags -wadtf ${TI386}
|
1993-03-21 12:45:37 +03:00
|
|
|
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AI386} | \
|
2005-03-02 07:49:59 +03:00
|
|
|
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
|
1993-03-21 12:45:37 +03:00
|
|
|
>> ${TI386}
|
|
|
|
sort -o ${TI386} ${TI386}
|
|
|
|
|
|
|
|
links:
|
|
|
|
-for i in ${DI386}; do \
|
1998-11-15 23:36:30 +03:00
|
|
|
(cd $$i && rm -f tags; ln -s ../tags tags); done
|
1993-07-04 18:02:53 +04:00
|
|
|
|
1997-10-11 13:12:18 +04:00
|
|
|
|
2003-02-27 01:21:19 +03:00
|
|
|
SUBDIR= compile include stand ../x86/include
|
1997-10-11 13:12:18 +04:00
|
|
|
|
1997-10-11 12:42:02 +04:00
|
|
|
.include <bsd.subdir.mk>
|