summaryrefslogtreecommitdiff
path: root/sys/arch/palm/Makefile
blob: 182ab41dd5d14820f48f25415ff0f5c0eaf4879f (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
# 	$OpenBSD: Makefile,v 1.1 2009/09/05 01:22:11 marex Exp $
#	$NetBSD: Makefile,v 1.1 2001/06/12 08:32:46 chris Exp $

# Makefile for palm tags file and boot blocks

S=${.CURDIR}/../..
.include "$S/kern/Make.tags.inc"

NOPROG=	noprog
NOMAN=	noman

TPALM=		$S/arch/palm/tags

SPALM=		$S/arch/palm/include/*.h \
		$S/arch/palm/palm/*.[ch] $S/arch/arm/arm/*.[ch] \
		$S/arch/arm/include/*.h $S/arch/arm/mainbus/*.[ch] \
		$S/arch/arm/sa11x0/*.[ch] $S/arch/arm/xscale/*.[ch]
APALM=		$S/arch/palm/palm/*.S $S/arch/arm/arm/*.S \
		$S/arch/arm/mainbus/*.S $S/arch/arm/xscale/*.S

# Directories in which to place tags links
DPALM=	include palm

tags:
	-ctags -wdtf ${TPALM} ${SPALM} ${COMM}
	egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${APALM} | \
	    sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3	\1	/^\2(\3\4$$/;" \
	    >> ${TPALM}
	sort -o ${TPALM} ${TPALM}

links:
	-for i in ${DPALM}; do \
	    (cd $$i && { rm -f tags; ln -s ${TPALM} tags; }) done

obj:	_SUBDIRUSE

.include <bsd.prog.mk>