NetBSD/sys/arch/luna68k/Makefile

32 lines
799 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.2 2003/01/06 17:40:35 lukem Exp $
# Makefile for luna68k tags file
# Find where mips source files are for inclusion in tags
.include <../m68k/Makefile.inc>
TLUNA68K= ../luna68k/tags
SLUNA68K= ../luna68k/luna68k/*.[ch] ../luna68k/include/*.h \
../luna68k/dev/*.[ch]
ALUNA68K= ../luna68k/luna68k/*.s
# Directories in which to place tags links
DLUNA68K= dev include
.include "../../kern/Make.tags.inc"
tags:
-ctags -wdtf ${TLUNA68K} ${SLUNA68K} ${COMM}
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${ALUNA68K} | \
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
>> ${TLUNA68K}
sort -o ${TLUNA68K} ${TLUNA68K}
links:
-for i in ${DLUNA68K}; do \
cd $$i && rm -f tags; ln -s ../tags tags; done
SUBDIR= compile include
.include <bsd.subdir.mk>