NetBSD/sys/arch/sparc/Makefile

29 lines
752 B
Makefile

# from: @(#)Makefile 8.1 (Berkeley) 6/11/93
# $Id: Makefile,v 1.2 1994/02/06 15:27:54 deraadt Exp $
#
# Makefile for sparc links, tags file
NOPROG= noprog
NOMAN= noman
NOOBJ= noobj
DIRS= conf dev fpu include rcons sbus sparc
links::
-for i in ${DIRS}; do \
(cd $$i && { rm -f tags; ln -s ${SYSTAGS} tags; }) done
SPARC= /sys/arch/sparc/dev/*.[ch] /sys/arch/sparc/fpu/*.[ch] \
/sys/arch/sparc/include/*.[ch] /sys/arch/sparc/rcons/*.[ch] \
/sys/arch/sparc/sbus/*.[ch] /sys/arch/sparc/sparc/*.[ch]
ASPARC= /sys/arch/sparc/sparc/*.s
tags:
-ctags -wdt ${COMM} ${SPARC}
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${ASPARC} | \
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
>> tags
sort -o tags tags
.include <bsd.prog.mk>