blob: 438958311f780135cfbcccf9a097e7ce33c9005f (
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
31
|
# from: @(#)Makefile 8.1 (Berkeley) 6/16/93
# $Id: Makefile,v 1.3 1996/09/19 06:02:28 deraadt Exp $
# Makefile for arc links, tags file
.include "../../kern/Make.tags.inc"
all:
@echo "make links or tags only"
DIRS= arc conf dev include isa pica
NOPROG= noprog
NOOBJ= noobj
NOOBJ= noman
links::
-for i in ${DIRS}; do \
(cd $$i && { rm -f tags; ln -s ${SYSTAGS} tags; }) done
PICA= /sys/pica/dev/*.[ch] /sys/pica/include/*.[ch] \
/sys/pica/pica/*.[ch] /sys/pica/ultrix/*.[ch]
APICA= /sys/pica/pica/*.s
tags::
-ctags -wdtif ${COMM} ${PICA}
egrep "^LEAF(.*)|^[AN]LEAF(.*)|^NON_LEAF(.*)" ${APICA} | \
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
>> tags
sort -o tags tags
.include <bsd.prog.mk>
|