blob: f03e75b5bb677fa54d94d4d25900873733e3ac40 (
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
|
# $OpenBSD: Makefile,v 1.2 2007/10/22 01:26:17 deraadt Exp $
# $NetBSD: Makefile,v 1.1 2006/09/01 21:26:18 uwe Exp $
# Makefile for landisk tags file and boot blocks
S=${.CURDIR}/../..
.include "../../kern/Make.tags.inc"
SUBDIR= stand
TLANDISK= ../landisk/tags
SLANDISK= ../landisk/landisk/*.[ch] ../landisk/include/*.h
ALANDISK= ../landisk/landisk/*.[sS]
# Directories in which to place tags links
DLANDISK= landisk include
tags:
-ctags -wdtf ${TLANDISK} ${SLANDISK} ${COMM}
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${ALANDISK} | \
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
>> ${TLANDISK}
sort -o ${TLANDISK} ${TLANDISK}
links:
-for i in ${DLANDISK}; do \
(cd $$i && rm -f tags; ln -s ../tags tags); done
.include <bsd.subdir.mk>
|