diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-06-12 21:51:12 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-06-12 21:51:12 +0000 |
commit | 1d8d972b679e07d3fcb5cfc9a4832df0cef7c061 (patch) | |
tree | 8d12434d9ef0413a2685d262736a9295d4d1a877 /sys/arch/i386/Makefile | |
parent | 3ffa1825849ee66f9ab9ade9d79657d9c8dbfa65 (diff) |
deal with gnu kernel dependencies right; cyxob@thief.dyndns.org
Diffstat (limited to 'sys/arch/i386/Makefile')
-rw-r--r-- | sys/arch/i386/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/i386/Makefile b/sys/arch/i386/Makefile index 076cc244eac..1a0af61271c 100644 --- a/sys/arch/i386/Makefile +++ b/sys/arch/i386/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 2001/05/29 22:11:26 mickey Exp $ +# $OpenBSD: Makefile,v 1.12 2001/06/12 21:51:11 deraadt Exp $ # $NetBSD: Makefile,v 1.6 1996/02/01 22:31:28 mycroft Exp $ # @(#)Makefile 7.3 (Berkeley) 6/9/91 @@ -15,12 +15,13 @@ TI386= ../i386/tags SI386= ../i386/eisa/*.[ch] ../i386/i386/*.[ch] ../i386/include/*.h \ ../i386/include/pc/*.h ../i386/isa/*.[ch] ../i386/pci/*.[ch] AI386= ../i386/i386/*.s ../i386/isa/*.s +GI386= ../../gnu/arch/i386/*/*.[ch] # Directories in which to place i386 tags links DI386= conf eisa i386 include isa pci tags: - -ctags -wdtf ${TI386} ${COMM} ${SI386} + -ctags -wdtf ${TI386} ${COMM} ${SI386} ${GI386} egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AI386} | \ sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \ >> ${TI386} |