xref: /original-bsd/sys/vax/Makefile (revision 0a8f3039)
1#	@(#)Makefile	7.6 (Berkeley) 07/24/92
2
3# Makefile for vax tags file
4
5.include "../kern/Make.tags.inc"
6
7all:
8	@echo "make tags only"
9
10VAX=	/sys/vax/bi/*.[ch] /sys/vax/conf/*.[ch] /sys/vax/if/*.[ch] \
11	/sys/vax/include/*.[ch] /sys/vax/mba/*.[ch] /sys/vax/uba/*.[ch] \
12	/sys/vax/vax/*.[ch]
13AVAX=	/sys/vax/vax/*.s
14
15tags::
16	-ctags -dt ${COMM} ${VAX}
17	egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AVAX} | \
18	    sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
19		>> tags
20	sort -o tags tags
21