blob: 4528fc23449b80e8c27f438051818f9168cbf982 (
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
32
33
34
35
36
37
38
39
|
# $OpenBSD: Makefile,v 1.15 2005/05/06 11:16:47 pedro Exp $
# $NetBSD: Makefile,v 1.6 1996/02/01 22:31:28 mycroft Exp $
# @(#)Makefile 7.3 (Berkeley) 6/9/91
# Makefile for i386 tags file and boot blocks
S=${.CURDIR}/../..
.include "$S/kern/Make.tags.inc"
NOPROG= noprog
NOMAN= noman
SUBDIR= stand
TI386= $S/arch/i386/tags
SI386= $S/arch/i386/eisa/*.[ch] $S/arch/i386/i386/*.[ch] \
$S/arch/i386/include/*.h $S/arch/i386/include/pc/*.h \
$S/arch/i386/isa/*.[ch] $S/arch/i386/pci/*.[ch]
AI386= $S/arch/i386/i386/*.[sS] $S/arch/i386/isa/*.[sS] \
$S/lib/libkern/arch/i386/*.[sS]
GI386= $S/gnu/arch/i386/*/*.[ch]
# Directories in which to place i386 tags links
DI386= conf eisa i386 include isa pci
tags:
-ctags -wdtf ${TI386} ${COMM} ${SI386} ${GI386}
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 ${TI386} tags); done
obj: _SUBDIRUSE
.include <bsd.prog.mk>
|