diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
commit | d6583bb2a13f329cf0332ef2570eb8bb8fc0e39c (patch) | |
tree | ece253b876159b39c620e62b6c9b1174642e070e /sys/arch/i386/Makefile |
initial import of NetBSD tree
Diffstat (limited to 'sys/arch/i386/Makefile')
-rw-r--r-- | sys/arch/i386/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sys/arch/i386/Makefile b/sys/arch/i386/Makefile new file mode 100644 index 00000000000..0aac0ca910d --- /dev/null +++ b/sys/arch/i386/Makefile @@ -0,0 +1,31 @@ +# $NetBSD: Makefile,v 1.8 1994/10/27 04:14:23 cgd Exp $ +# @(#)Makefile 7.3 (Berkeley) 6/9/91 + +# Makefile for i386 tags file and boot blocks + +NOPROG= noprog +NOMAN= noman + +SUBDIR= boot + +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 + +obj: _SUBDIRUSE + +.include <bsd.prog.mk> |