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/amiga/Makefile |
initial import of NetBSD tree
Diffstat (limited to 'sys/arch/amiga/Makefile')
-rw-r--r-- | sys/arch/amiga/Makefile | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/sys/arch/amiga/Makefile b/sys/arch/amiga/Makefile new file mode 100644 index 00000000000..4a41feb9404 --- /dev/null +++ b/sys/arch/amiga/Makefile @@ -0,0 +1,45 @@ +# $NetBSD: Makefile,v 1.10 1994/10/26 02:01:24 cgd Exp $ + +# @(#)Makefile 7.3 (Berkeley) 6/9/91 + +S=${BSDSRCDIR}/sys +COMM= $S/vm/*.[ch] $S/ufs/*.[ch] $S/sys/*.h $S/compat/sunos/*.[ch] \ + $S/nfs/*.[ch] $S/netns/*.[ch] $S/netiso/*.[ch] \ + $S/netiso/xebec/*.[ch] $S/netinet/*.[ch] $S/netccitt/*.[ch] \ + $S/net/*.[ch] $S/miscfs/*/*.[ch] $S/kern/*.[ch] $S/dev/*.[ch] \ + $S/scsi/*.[ch] $S/lib/libkern/m68k/*.[ch] $S/lib/libkern/*.[ch] + +# Makefile for amiga tags file + +all: + @echo "make tags or links only" + +TAMIGA= $S/arch/amiga/tags +SAMIGA= $S/arch/m68k/m68k/*.c $S/arch/m68k/include/*.h \ + $S/arch/amiga/amiga/*.[ch] $S/arch/amiga/include/*.h \ + $S/arch/amiga/dev/*.[ch] +AAMIGA= $S/arch/m68k/m68k/*.s $S/arch/amiga/amiga/*.s + +# Directories in which to place amiga tags links +DAMIGA= amiga dev include + +TAGS: + -etags -dt ${COMM} ${SAMIGA} ${AAMIGA} + egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AAMIGA} | \ + sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \ + >> ${TAMIGA}/tags + +tags: + -ctags -dtf ${TAMIGA} ${COMM} ${SAMIGA} + egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AAMIGA} | \ + sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \ + >> ${TAMIGA} + sort -o ${TAMIGA} ${TAMIGA} + +links: + -for i in ${DAMIGA}; do \ + rm -f $$i/tags; rm -f $$i/TAGS ; \ + ln -s ../tags $$i/tags; ln -s ../TAGS $$i/TAGS; done + +.include <bsd.prog.mk> + |