32 lines
806 B
Makefile
32 lines
806 B
Makefile
# $NetBSD: Makefile,v 1.4 2003/01/06 17:40:38 lukem Exp $
|
|
|
|
# Makefile for mipsco tags file
|
|
|
|
# Find where mips source files are for inclusion in tags
|
|
.include <../mips/Makefile.inc>
|
|
|
|
TMIPSCO= ../mipsco/tags
|
|
SMIPSCO= ../mipsco/mipsco/*.[ch] ../mipsco/include/*.h \
|
|
../mipsco/obio/*.[ch]
|
|
AMIPSCO= ../mipsco/mipsco/*.S
|
|
|
|
# Directories in which to place tags links
|
|
DMIPSCO= obio include
|
|
|
|
.include "../../kern/Make.tags.inc"
|
|
|
|
tags:
|
|
-ctags -wdtf ${TMIPSCO} ${SMIPSCO} ${SMIPS} ${COMM}
|
|
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AMIPSCO} ${AMIPS} | \
|
|
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
|
|
>> ${TMIPSCO}
|
|
sort -o ${TMIPSCO} ${TMIPSCO}
|
|
|
|
links:
|
|
-for i in ${DMIPSCO}; do \
|
|
cd $$i && rm -f tags; ln -s ../tags tags; done
|
|
|
|
SUBDIR= compile include stand
|
|
|
|
.include <bsd.subdir.mk>
|