NetBSD/sys/arch/i386/Makefile

30 lines
719 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.15 1998/06/12 23:22:36 cgd Exp $
1993-03-21 12:45:37 +03:00
# Makefile for i386 tags file and boot blocks
1993-03-21 12:45:37 +03:00
TI386= ../i386/tags
SI386= ../i386/i386/*.[ch] ../i386/include/*.h \
../i386/eisa/*.[ch] ../i386/isa/*.[ch] ../i386/pci/*.[ch]
1993-03-21 12:45:37 +03:00
AI386= ../i386/i386/*.s
# Directories in which to place tags links
DI386= eisa isa include pci
.include "../../kern/Make.tags.inc"
1993-03-21 12:45:37 +03:00
tags:
-ctags -wdtf ${TI386} ${SI386} ${COMM}
1993-03-21 12:45:37 +03:00
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AI386} | \
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
>> ${TI386}
sort -o ${TI386} ${TI386}
links:
-for i in ${DI386}; do \
cd $$i && rm -f tags; ln -s ../tags tags; done
SUBDIR= include stand isa/pcvt
.include <bsd.subdir.mk>