diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-04-15 17:35:12 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-04-15 17:35:12 +0000 |
commit | 6fe930a6e1eb6596979b54eb28d94e81a4975efa (patch) | |
tree | b98079974d40e9ea6364e56135edf6dc309f7fcd | |
parent | 82c2f20dd704f836db8bb94b1a9878f6f6777871 (diff) |
Correct dirlist for tags.
-rw-r--r-- | sys/arch/solbourne/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/solbourne/Makefile b/sys/arch/solbourne/Makefile index 5df5728ffb3..18aea26ce62 100644 --- a/sys/arch/solbourne/Makefile +++ b/sys/arch/solbourne/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 2005/05/06 11:16:48 pedro Exp $ +# $OpenBSD: Makefile,v 1.3 2006/04/15 17:35:11 miod Exp $ # $NetBSD: Makefile,v 1.4 1996/03/25 22:48:09 mrg Exp $ # @@ -19,9 +19,9 @@ links:: -for i in ${DIRS}; do \ (cd $$i && { rm -f tags; ln -s ${TSOLBOURNE} tags; }) done -SOLBOURNE= $S/arch/solbourne/dev/*.[ch] $S/arch/solbourne/fpu/*.[ch] \ +SOLBOURNE= $S/arch/solbourne/dev/*.[ch] \ $S/arch/solbourne/include/*.[ch] $S/arch/solbourne/solbourne/*.[ch] -ASOLBOURNE= $S/arch/solbourne/solbourne/*.[sS] $S/lib/libkern/arch/solbourne/*.[sS] +ASOLBOURNE= $S/arch/solbourne/solbourne/*.[sS] tags: -ctags -wdtf ${TSOLBOURNE} ${COMM} ${SOLBOURNE} |