summaryrefslogtreecommitdiff
path: root/sys/arch/algor/Makefile
blob: 5685f15485725351c75c829601af99c4a73ee89d (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
#	$NetBSD: Makefile,v 1.4 2011/04/06 01:24:43 dyoung Exp $

# Makefile for algor tags file and boot blocks

# Find where mips source files are for inclusion in tags
.include <../mips/Makefile.inc>

TALGOR=		${SYSDIR}/arch/algor/tags
SALGOR=		${SYSDIR}/arch/algor/algor/*.[ch]
SALGOR+=	${SYSDIR}/arch/algor/dev/*.[ch]
SALGOR+=	${SYSDIR}/arch/algor/include/*.h
SALGOR+=	${SYSDIR}/arch/algor/isa/*.[ch]
SALGOR+=	${SYSDIR}/arch/algor/pci/*.[ch]

AALGOR=		${SYSDIR}/arch/algor/algor/*.S
# Directories in which to place tags links
DALGOR= algor include isa pci

.include "../../kern/Make.tags.inc"

tags:
	-rm -f ${TALGOR}
	-echo ${SALGOR} ${SMIPS} | xargs ctags -wadtf ${TALGOR}
	-${FINDCOMM} | xargs ctags -wadtf ${TALGOR}
	egrep "^LEAF(.*)|^[AN]LEAF(.*)|^NON_LEAF(.*)" ${AALGOR} ${AMIPS} | \
	    ${TOOL_SED} -e \
		"s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3	\1	/^\2(\3\4$$/;" \
	    >> ${TALGOR}
	sort -o ${TALGOR} ${TALGOR}

links:
	-for i in ${DALGOR}; do \
	    cd $$i && rm -f tags; ln -s ../tags tags; done


SUBDIR=	compile include

.include <bsd.subdir.mk>