1#         $NetBSD: Makefile,v 1.4 2013/06/30 21:56:44 matt Exp $
2
3# Makefile for shark tags file and boot blocks
4
5TSHARK=   ../shark/tags
6SSHARK=   ../shark/shark/*.[ch] ../shark/include/*.h \
7          ../shark/isa/*.[ch] ../shark/ofw/*.[ch]
8ASHARK=   ../shark/isa/*.S ../shark/shark/*.S
9
10# Directories in which to place tags links
11DSHARK=   isa include ofw
12
13.include "../../kern/Make.tags.inc"
14
15tags:
16          -ctags -wdtf ${TSHARK} ${SSHARK} ${COMM}
17          egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${ASHARK} | \
18              ${TOOL_SED} -e \
19                    "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
20              >> ${TSHARK}
21          sort -o ${TSHARK} ${TSHARK}
22
23links:
24          -for i in ${DSHARK}; do \
25              cd $$i && rm -f tags; ln -s ../tags tags; done
26
27
28SUBDIR=   compile include
29#SUBDIR+= stand
30
31.include <bsd.subdir.mk>
32