blob: 4ad5a34556fb85102f5dd2adb2d06dde2a12a9a9 (
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
|
# from: @(#)Makefile 7.3 (Berkeley) 6/9/91
# $Id$
# Makefile for i386 tags file
all:
@echo "make tags or links only"
TI386= ../i386/tags
SI386= ../i386/i386/*.[ch] ../i386/include/*.h ../i386/isa/*.[ch]
AI386= ../i386/i386/*.s
# Directories in which to place i386 tags links
DI386= eisa isa mca include
tags:
-ctags -dtf ${TI386} ${COMM} ${SI386}
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AI386} | \
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
>> ${TI386}
sort -o ${TI386} ${TI386}
links:
-for i in ${DI386}; do \
cd $$i && rm -f tags; ln -s ../tags tags; done
|