NetBSD/sys/arch/sparc64/Makefile

40 lines
1.0 KiB
Makefile
Raw Normal View History

1999-05-09 23:24:19 +04:00
# $NetBSD: Makefile,v 1.7 1999/05/09 19:24:19 eeh Exp $
1998-06-20 08:58:50 +04:00
# Makefile for sparc64 tags file and boot blocks
TSPARC64= ../sparc64/tags
SSPARC64= ../sparc64/dev/*.[ch] ../sparc64/fpu/*.[ch] \
../sparc64/include/*.[ch] ../sparc64/sparc64/*.[ch]
ASPARC64= ../sparc64/sparc64/*.s
1999-05-09 23:24:19 +04:00
# CSPARC64= ../../compat/*/*.[ch]
1998-06-20 08:58:50 +04:00
# Directories in which to place tags links
DSPARC64= conf dev fpu include sparc64
1999-05-09 23:24:19 +04:00
SYSDIR= ../../
.include "../../kern/Make.tags.inc"
1998-06-20 08:58:50 +04:00
tags:
-ctags -wdtf ${TSPARC64} ${SSPARC64} ${COMM}
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${ASPARC64} | \
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
>> tags
sort -o ${TSPARC64} ${TSPARC64}
1999-05-09 23:24:19 +04:00
.ifmake TAGS
COMM!= find ${SYSDIR} -name "arch" -prune -o -name "*.[ch]" -print
.endif
TAGS:
etags ${SSPARC64} ${COMM} ${CSPARC64} "--regex=/ENTRY(.*)/" \
"--regex=/FUNC(.*)/" "--regex=/SYSCALL(.*)/" ${ASPARC64}
1998-06-20 08:58:50 +04:00
links:
-for i in ${DSPARC64}; do \
cd $$i && rm -f tags; ln -s ../tags tags; done
SUBDIR= include stand
1998-06-20 08:58:50 +04:00
.include <bsd.subdir.mk>