Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch Write tab-separated records to 'tags' file. A popu...
details: https://anonhg.NetBSD.org/src/rev/4e8e2555f758
branches: trunk
changeset: 574493:4e8e2555f758
user: dyoung <dyoung%NetBSD.org@localhost>
date: Wed Mar 02 04:49:59 2005 +0000
description:
Write tab-separated records to 'tags' file. A popular vi-alike,
vim, expects for the columns in tags files to be tab-separated,
but these makefiles created space-separated records for the assembly
sources.
diffstat:
sys/arch/i386/Makefile | 4 ++--
sys/arch/macppc/Makefile | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diffs (36 lines):
diff -r 1003d391e794 -r 4e8e2555f758 sys/arch/i386/Makefile
--- a/sys/arch/i386/Makefile Wed Mar 02 03:33:46 2005 +0000
+++ b/sys/arch/i386/Makefile Wed Mar 02 04:49:59 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.23 2004/01/16 10:08:42 dyoung Exp $
+# $NetBSD: Makefile,v 1.24 2005/03/02 04:49:59 dyoung Exp $
# Makefile for i386 tags file and boot blocks
@@ -19,7 +19,7 @@
rm -f ${TI386}
-echo ${SI386} ${COMM} | xargs ctags -wadtf ${TI386}
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AI386} | \
- sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
+ sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
>> ${TI386}
sort -o ${TI386} ${TI386}
diff -r 1003d391e794 -r 4e8e2555f758 sys/arch/macppc/Makefile
--- a/sys/arch/macppc/Makefile Wed Mar 02 03:33:46 2005 +0000
+++ b/sys/arch/macppc/Makefile Wed Mar 02 04:49:59 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2004/03/13 05:55:40 dyoung Exp $
+# $NetBSD: Makefile,v 1.5 2005/03/02 04:49:59 dyoung Exp $
# Makefile for macppc tags file
@@ -19,7 +19,7 @@
rm -f ${TIMACPPC}
-echo ${SIMACPPC} ${COMM} | xargs ctags -wadtf ${TIMACPPC}
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AIMACPPC} | \
- sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
+ sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
>> ${TIMACPPC}
sort -o ${TIMACPPC} ${TIMACPPC}
Home |
Main Index |
Thread Index |
Old Index