Module Name: src
Committed By: dyoung
Date: Wed Apr 6 01:24:44 UTC 2011
Modified Files:
src/sys/arch/algor: Makefile
Log Message:
Fix target 'tags'.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/algor/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/algor/Makefile
diff -u src/sys/arch/algor/Makefile:1.3 src/sys/arch/algor/Makefile:1.4
--- src/sys/arch/algor/Makefile:1.3 Sat Oct 25 22:27:36 2008
+++ src/sys/arch/algor/Makefile Wed Apr 6 01:24:43 2011
@@ -1,25 +1,31 @@
-# $NetBSD: Makefile,v 1.3 2008/10/25 22:27:36 apb Exp $
+# $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= ../algor/tags
-SALGOR= ../algor/algor/*.[ch] ../algor/include/*.h ../algor/isa/*.[ch] \
- ../algor/pci/*.[ch]
-AALGOR= ../algor/algor/*.S
+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:
- -ctags -wdtf ${TALGOR} ${SALGOR} ${SMIPS} ${COMM}
+ -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} "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
- >> ${TARC}
+ ${TOOL_SED} -e \
+ "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
+ >> ${TALGOR}
sort -o ${TALGOR} ${TALGOR}
links: