blob: 155b6984107ba3c96f3e7833d3d1943c1a9269f2 (
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
|
# from: @(#)Makefile 8.1 (Berkeley) 6/16/93
# $Id: Makefile,v 1.2 1997/10/23 13:14:37 deraadt Exp $
# Makefile for pica links, tags file
.include "../../kern/Make.tags.inc"
all:
@echo "make links or tags only"
DIRS= conf dev dist include pica
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
obj: _SUBDIRUSE
.include <bsd.prog.mk>
|