32 lines
758 B
Makefile
32 lines
758 B
Makefile
# $NetBSD: Makefile,v 1.4 2013/06/30 21:56:44 matt Exp $
|
|
|
|
# Makefile for shark tags file and boot blocks
|
|
|
|
TSHARK= ../shark/tags
|
|
SSHARK= ../shark/shark/*.[ch] ../shark/include/*.h \
|
|
../shark/isa/*.[ch] ../shark/ofw/*.[ch]
|
|
ASHARK= ../shark/isa/*.S ../shark/shark/*.S
|
|
|
|
# Directories in which to place tags links
|
|
DSHARK= isa include ofw
|
|
|
|
.include "../../kern/Make.tags.inc"
|
|
|
|
tags:
|
|
-ctags -wdtf ${TSHARK} ${SSHARK} ${COMM}
|
|
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${ASHARK} | \
|
|
${TOOL_SED} -e \
|
|
"s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
|
|
>> ${TSHARK}
|
|
sort -o ${TSHARK} ${TSHARK}
|
|
|
|
links:
|
|
-for i in ${DSHARK}; do \
|
|
cd $$i && rm -f tags; ln -s ../tags tags; done
|
|
|
|
|
|
SUBDIR= compile include
|
|
#SUBDIR+= stand
|
|
|
|
.include <bsd.subdir.mk>
|