1#         $NetBSD: Makefile,v 1.5 2013/11/17 04:45:35 nisimura Exp $
2
3# Makefile for luna68k tags file
4
5# Find where m68k source files are for inclusion in tags
6.include <../m68k/Makefile.inc>
7
8TLUNA68K= ../luna68k/tags
9SLUNA68K= ../luna68k/luna68k/*.[ch] ../luna68k/include/*.h \
10                    ../luna68k/dev/*.[ch]
11ALUNA68K= ../luna68k/luna68k/*.s
12
13# Directories in which to place tags links
14DLUNA68K= dev include
15
16.include "../../kern/Make.tags.inc"
17
18tags:
19          -ctags -wdtf ${TLUNA68K} ${SLUNA68K} ${COMM}
20          egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${ALUNA68K} | \
21              ${TOOL_SED} -e \
22                    "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
23              >> ${TLUNA68K}
24          sort -o ${TLUNA68K} ${TLUNA68K}
25
26links:
27          -for i in ${DLUNA68K}; do \
28              cd $$i && rm -f tags; ln -s ../tags tags; done
29
30SUBDIR=   compile include stand
31
32.include <bsd.subdir.mk>
33