[complement-svn] SF.net SVN: complement: [1506] trunk/complement/explore
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2007-02-05 10:05:51
|
Revision: 1506 http://svn.sourceforge.net/complement/?rev=1506&view=rev Author: complement Date: 2007-02-05 02:05:46 -0800 (Mon, 05 Feb 2007) Log Message: ----------- fix tags generation Modified Paths: -------------- trunk/complement/explore/Makefiles/gmake/depend.mak trunk/complement/explore/inquiry/STLport/multimap/Makefile Modified: trunk/complement/explore/Makefiles/gmake/depend.mak =================================================================== --- trunk/complement/explore/Makefiles/gmake/depend.mak 2007-02-05 08:58:40 UTC (rev 1505) +++ trunk/complement/explore/Makefiles/gmake/depend.mak 2007-02-05 10:05:46 UTC (rev 1506) @@ -1,4 +1,4 @@ -# Time-stamp: <07/01/23 14:58:21 ptr> +# Time-stamp: <07/02/05 12:57:11 ptr> # # Copyright (c) 1997-1999, 2002, 2003, 2005, 2006 # Petr Ovtchenkov @@ -35,9 +35,9 @@ @cat -s $(_ALL_DEP) /dev/null > $(DEPENDS_COLLECTION) TAGS: $(OUTPUT_DIRS) ${_DASH_DEP} - @etags -i -m `cat -s $(_ALL_DEP) /dev/null | sed 's/^.*://;s/\\\\$$//' | uniq -u` + @cat -s $(_ALL_DEP) /dev/null | sed -e 's/^.*://;s/^ *//;s/\\$$//;s/ $$//;s/ /\n/g' | sort | uniq | xargs etags -i -m tags: $(OUTPUT_DIRS) ${_DASH_DEP} - @ctags -d --globals --declarations -t -w `cat -s $(_ALL_DEP) /dev/null | sed 's/^.*://;s/\\\\$$//' | uniq -u` + @cat -s $(_ALL_DEP) /dev/null | sed -e 's/^.*://;s/^ *//;s/\\$$//;s/ $$//;s/ /\n/g' | sort | uniq | ctags -d --globals --declarations -t -w -include $(DEPENDS_COLLECTION) Modified: trunk/complement/explore/inquiry/STLport/multimap/Makefile =================================================================== --- trunk/complement/explore/inquiry/STLport/multimap/Makefile 2007-02-05 08:58:40 UTC (rev 1505) +++ trunk/complement/explore/inquiry/STLport/multimap/Makefile 2007-02-05 10:05:46 UTC (rev 1506) @@ -2,6 +2,7 @@ SRCROOT := ../../.. COMPILER_NAME := gcc +STLPORT_DIR := /export/home/ptr/STLport.lab/STLport.5_0 include Makefile.inc include ${SRCROOT}/Makefiles/top.mak This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |