[complement-svn] SF.net SVN: complement: [1715] trunk/complement/explore/Makefiles
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2007-08-30 14:35:49
|
Revision: 1715 http://complement.svn.sourceforge.net/complement/?rev=1715&view=rev Author: complement Date: 2007-08-30 07:35:47 -0700 (Thu, 30 Aug 2007) Log Message: ----------- $(AUX_DIR) for things like archive repack Modified Paths: -------------- trunk/complement/explore/Makefiles/ChangeLog trunk/complement/explore/Makefiles/gmake/lib/clean.mak trunk/complement/explore/Makefiles/gmake/targetdirs.mak Modified: trunk/complement/explore/Makefiles/ChangeLog =================================================================== --- trunk/complement/explore/Makefiles/ChangeLog 2007-08-30 14:34:12 UTC (rev 1714) +++ trunk/complement/explore/Makefiles/ChangeLog 2007-08-30 14:35:47 UTC (rev 1715) @@ -1,3 +1,13 @@ +2007-08-30 Petr Ovtchenkov <pt...@is...> + + * gmake/sysid.mak, gmake/app/gcc.mak, gmake/lib/gcc.mak: + MacOS X 10.4 with gcc; + + * gmake/gcc.mak: use STLport's experience for MinGW; + + * gmake/targetdirs.mak, gmake/lib/clean.mak: $(AUX_DIR) for things + like archive repack; + 2007-08-29 Petr Ovtchenkov <pt...@is...> * gmake/targetdirs.mak: default installation path is /usr/local Modified: trunk/complement/explore/Makefiles/gmake/lib/clean.mak =================================================================== --- trunk/complement/explore/Makefiles/gmake/lib/clean.mak 2007-08-30 14:34:12 UTC (rev 1714) +++ trunk/complement/explore/Makefiles/gmake/lib/clean.mak 2007-08-30 14:35:47 UTC (rev 1715) @@ -1,6 +1,6 @@ # -*- makefile -*- Time-stamp: <07/05/30 23:55:47 ptr> # -# Copyright (c) 1997-1999, 2002, 2003, 2005, 2006 +# Copyright (c) 1997-1999, 2002, 2003, 2005-2007 # Petr Ovtchenkov # # Portion Copyright (c) 1999-2001 @@ -85,7 +85,7 @@ distclean:: @-rm -f $(DEPENDS_COLLECTION) - @-rmdir -p ${OUTPUT_DIR} ${OUTPUT_DIR_DBG} ${OUTPUT_DIR_STLDBG} 2>/dev/null + @-rmdir -p $(AUX_DIR) ${OUTPUT_DIR} ${OUTPUT_DIR_DBG} ${OUTPUT_DIR_STLDBG} 2>/dev/null uninstall:: ifdef LIBNAME Modified: trunk/complement/explore/Makefiles/gmake/targetdirs.mak =================================================================== --- trunk/complement/explore/Makefiles/gmake/targetdirs.mak 2007-08-30 14:34:12 UTC (rev 1714) +++ trunk/complement/explore/Makefiles/gmake/targetdirs.mak 2007-08-30 14:35:47 UTC (rev 1715) @@ -1,6 +1,6 @@ # Time-stamp: <06/11/03 18:47:05 ptr> # -# Copyright (c) 1997-1999, 2002, 2003, 2005, 2006 +# Copyright (c) 1997-1999, 2002, 2003, 2005-2007 # Petr Ovtchenkov # # Portion Copyright (c) 1999-2001 @@ -26,6 +26,9 @@ # file to store generated dependencies for make: DEPENDS_COLLECTION := $(PRE_OUTPUT_DIR)/.make.depend +# catalog for auxilary files, if any +AUX_DIR := $(PRE_OUTPUT_DIR)/.auxdir + # I use the same catalog, as for shared: OUTPUT_DIR_A := $(OUTPUT_DIR) OUTPUT_DIR_A_DBG := $(OUTPUT_DIR_DBG) @@ -74,7 +77,7 @@ INSTALL_BIN_DIRS := $(sort $(INSTALL_BIN_DIRS)) INSTALL_DIRS := $(sort $(INSTALL_LIB_DIRS) $(INSTALL_BIN_DIRS)) -PHONY += $(OUTPUT_DIRS) $(INSTALL_DIRS) +PHONY += $(OUTPUT_DIRS) $(INSTALL_DIRS) $(AUX_DIR) define createdirs @for d in $@ ; do \ @@ -93,3 +96,5 @@ $(INSTALL_DIRS): $(createdirs) +$(AUX_DIR): + $(createdirs) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |