diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2005-05-06 03:25:09 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2005-05-06 03:25:09 +0000 |
commit | ceb476bb295d2614fe527489be20a7d095e5c958 (patch) | |
tree | 41d43164223409ef60af56be571352f1b006d9a4 /sys | |
parent | a65044490ce6e835c208ceda4bc03b7f93044db3 (diff) |
Add more dirs and fix links target.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/luna88k/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/arch/luna88k/Makefile b/sys/arch/luna88k/Makefile index c2c9d5b1892..c1a495d6b63 100644 --- a/sys/arch/luna88k/Makefile +++ b/sys/arch/luna88k/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 2005/05/06 01:45:03 marco Exp $ +# $OpenBSD: Makefile,v 1.3 2005/05/06 03:25:08 marco Exp $ S=${.CURDIR}/../.. .include "$S/kern/Make.tags.inc" @@ -11,11 +11,13 @@ SUBDIR= TLUNA88K= $S/arch/luna88k/tags SLUNA88K= $S/arch/luna88k/luna88k/*.[ch] \ + $S/arch/luna88k/ddb/*.[ch] \ + $S/arch/luna88k/dev/*.[ch] \ $S/arch/luna88k/include/*.h ALUNA88K= $S/arch/luna88k/luna88k/*.[sS] # Directories in which to place luna88k tags links -DLUNA88K= conf luna88k include +DLUNA88K= conf ddb dev include luna88k tags: -ctags -wdtf ${TLUNA88K} ${COMM} ${SLUNA88K} @@ -26,7 +28,7 @@ tags: links: -for i in ${DLUNA88K}; do \ - cd $$i && rm -f tags; ln -s ${TLUNA88K} tags; done + (cd $$i && rm -f tags; ln -s ${TLUNA88K} tags); done obj: _SUBDIRUSE |