2003-01-06 20:40:18 +03:00
|
|
|
# $NetBSD: Makefile,v 1.4 2003/01/06 17:40:26 lukem Exp $
|
2000-03-20 02:07:43 +03:00
|
|
|
|
|
|
|
# Makefile for cobalt tags file
|
|
|
|
|
|
|
|
# Find where mips source files are for inclusion in tags
|
|
|
|
.include <../mips/Makefile.inc>
|
|
|
|
|
|
|
|
TCOBALT= ../cobalt/tags
|
|
|
|
SCOBALT= ../cobalt/cobalt/*.[ch] ../cobalt/include/*.h \
|
2000-06-28 13:47:55 +04:00
|
|
|
../cobalt/dev/*.[ch] ../cobalt/pci/*.[ch]
|
2000-03-20 02:07:43 +03:00
|
|
|
ACOBALT= ../cobalt/cobalt/*.S
|
|
|
|
|
|
|
|
# Directories in which to place tags links
|
|
|
|
DCOBALT= pci include
|
|
|
|
|
|
|
|
.include "../../kern/Make.tags.inc"
|
|
|
|
|
|
|
|
tags:
|
|
|
|
-ctags -wdtf ${TCOBALT} ${SCOBALT} ${SMIPS} ${COMM}
|
|
|
|
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${ACOBALT} ${AMIPS} | \
|
|
|
|
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
|
|
|
|
>> ${TCOBALT}
|
|
|
|
sort -o ${TCOBALT} ${TCOBALT}
|
|
|
|
|
|
|
|
links:
|
|
|
|
-for i in ${DCOBALT}; do \
|
|
|
|
cd $$i && rm -f tags; ln -s ../tags tags; done
|
|
|
|
|
2003-01-06 20:40:18 +03:00
|
|
|
SUBDIR= compile include stand
|
2000-03-20 02:07:43 +03:00
|
|
|
|
|
|
|
.include <bsd.subdir.mk>
|