blob: 477206099c7b7a5c4fa2ea74fccc19eab57bf165 (
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
|
# $NetBSD: Makefile,v 1.4 2003/04/29 05:42:43 thorpej Exp $
# Makefile for evbarm tags file and boot blocks
TEVBARM= ../evbarm/tags
SEVBARM= ../evbarm/integrator/*.[ch] ../evbarm/include/*.h \
../evbarm/dev/*.[ch] ../evbarm/ifpga/*.[ch] \
../evbarm/iq80310/*.[ch] \
../evbarm/integrator_fpga/*.[ch] \
AEVBARM= ../evbarm/integrator/*.S ../evbarm/ifpga/*.S \
# Directories in which to place tags links
DEVBARM= include
.include "../../kern/Make.tags.inc"
tags:
-ctags -wdtf ${TEVBARM} ${SEVBARM} ${COMM}
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AEVBARM} | \
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
>> ${TEVBARM}
sort -o ${TEVBARM} ${TEVBARM}
links:
-for i in ${DEVBARM}; do \
cd $$i && rm -f tags; ln -s ../tags tags; done
SUBDIR= compile include stand
.include <bsd.subdir.mk>
|