blob: 942bc4f3dc3808eca1d7982564682999f035829b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/* $OpenBSD: Makefile,v 1.2 2004/02/06 17:31:17 drahn Exp $ */
# $NetBSD: Makefile,v 1.1 2001/06/12 08:32:46 chris Exp $
# Makefile for cats tags file and boot blocks
TCATS= ../cats/tags
SCATS= ../cats/cats/*.[ch] ../cats/include/*.h \
../cats/isa/*.[ch]
ACATS= ../cats/cats/*.S
# Directories in which to place tags links
DCATS= isa include
.include "../../kern/Make.tags.inc"
tags:
-ctags -wdtf ${TCATS} ${SCATS} ${COMM}
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${ACATS} | \
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
>> ${TCATS}
sort -o ${TCATS} ${TCATS}
links:
-for i in ${DCATS}; do \
cd $$i && rm -f tags; ln -s ../tags tags; done
SUBDIR=
.include <bsd.subdir.mk>
|