NetBSD/sys/arch/i386/Makefile

30 lines
692 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.10 1997/06/07 00:35:42 perry Exp $
1994-10-27 07:14:23 +03:00
# @(#)Makefile 7.3 (Berkeley) 6/9/91
1993-03-21 12:45:37 +03:00
# Makefile for i386 tags file and boot blocks
1993-03-21 12:45:37 +03:00
NOPROG= noprog
NOMAN= noman
SUBDIR= stand
1993-03-21 12:45:37 +03:00
TI386= ../i386/tags
SI386= ../i386/i386/*.[ch] ../i386/include/*.h ../i386/isa/*.[ch]
AI386= ../i386/i386/*.s
# Directories in which to place i386 tags links
DI386= eisa isa mca include
tags:
-ctags -dtf ${TI386} ${COMM} ${SI386}
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
.include <bsd.prog.mk>