Makefile revision 1.3
11.3Seeh# $NetBSD: Makefile,v 1.3 1998/09/05 23:57:24 eeh Exp $ 21.1Seeh 31.1Seeh# Makefile for sparc64 tags file and boot blocks 41.1Seeh 51.1SeehTSPARC64= ../sparc64/tags 61.1SeehSSPARC64= ../sparc64/dev/*.[ch] ../sparc64/fpu/*.[ch] \ 71.1Seeh ../sparc64/include/*.[ch] ../sparc64/sparc64/*.[ch] 81.1SeehASPARC64= ../sparc64/sparc64/*.s 91.1Seeh 101.1Seeh# Directories in which to place tags links 111.1SeehDSPARC64= conf dev fpu include sparc64 121.1Seeh 131.1Seehtags: 141.1Seeh -ctags -wdtf ${TSPARC64} ${SSPARC64} ${COMM} 151.1Seeh egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${ASPARC64} | \ 161.1Seeh sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \ 171.1Seeh >> tags 181.1Seeh sort -o ${TSPARC64} ${TSPARC64} 191.3Seeh 201.3SeehTAGS: 211.3Seeh @find ../.. -name '*.[chsS]' -print | grep -v CVS >filist 221.3Seeh etags `grep sparc64 filist` `grep -v arch filist` 231.3Seeh -${RM} fillist 241.1Seeh 251.1Seehlinks: 261.1Seeh -for i in ${DSPARC64}; do \ 271.1Seeh cd $$i && rm -f tags; ln -s ../tags tags; done 281.1Seeh 291.1Seeh 301.2SeehSUBDIR= include stand 311.1Seeh 321.1Seeh.include <bsd.subdir.mk> 33