[complement-svn] SF.net SVN: complement: [1607] trunk/complement/explore/Makefiles
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2007-07-12 07:13:04
|
Revision: 1607 http://svn.sourceforge.net/complement/?rev=1607&view=rev Author: complement Date: 2007-07-12 00:12:59 -0700 (Thu, 12 Jul 2007) Log Message: ----------- add include option for boost's headers, if BOOST_DIR defined Modified Paths: -------------- trunk/complement/explore/Makefiles/ChangeLog trunk/complement/explore/Makefiles/gmake/gcc.mak trunk/complement/explore/Makefiles/gmake/top.mak Modified: trunk/complement/explore/Makefiles/ChangeLog =================================================================== --- trunk/complement/explore/Makefiles/ChangeLog 2007-07-11 21:01:08 UTC (rev 1606) +++ trunk/complement/explore/Makefiles/ChangeLog 2007-07-12 07:12:59 UTC (rev 1607) @@ -1,3 +1,8 @@ +2007-07-12 Petr Ovtchenkov <pt...@is...> + + * gmake/gcc.mak, gmake/top.mak: add include option for boost's + headers, if BOOST_DIR defined. + 2007-06-08 Petr Ovtchenkov <pt...@is...> * clean.mak, extern.mak, config.mak: move to gmake catalog Modified: trunk/complement/explore/Makefiles/gmake/gcc.mak =================================================================== --- trunk/complement/explore/Makefiles/gmake/gcc.mak 2007-07-11 21:01:08 UTC (rev 1606) +++ trunk/complement/explore/Makefiles/gmake/gcc.mak 2007-07-12 07:12:59 UTC (rev 1607) @@ -1,4 +1,4 @@ -# Time-stamp: <07/05/31 01:25:52 ptr> +# Time-stamp: <07/07/12 10:51:42 ptr> # # Copyright (c) 1997-1999, 2002, 2003, 2005, 2006 # Petr Ovtchenkov @@ -66,6 +66,10 @@ INCLUDES = -I${STLPORT_INCLUDE_DIR} endif +ifdef BOOST_INCLUDE_DIR +INCLUDES += -I${BOOST_INCLUDE_DIR} +endif + OUTPUT_OPTION = -o $@ LINK_OUTPUT_OPTION = ${OUTPUT_OPTION} CPPFLAGS = $(DEFS) $(INCLUDES) Modified: trunk/complement/explore/Makefiles/gmake/top.mak =================================================================== --- trunk/complement/explore/Makefiles/gmake/top.mak 2007-07-11 21:01:08 UTC (rev 1606) +++ trunk/complement/explore/Makefiles/gmake/top.mak 2007-07-12 07:12:59 UTC (rev 1607) @@ -1,4 +1,4 @@ -# Time-stamp: <07/06/08 23:23:03 ptr> +# Time-stamp: <07/07/12 10:55:41 ptr> # # Copyright (c) 1997-1999, 2002, 2003, 2005-2007 # Petr Ovtchenkov @@ -81,12 +81,12 @@ include ${RULESBASE}/gmake/$(BUILD_OSNAME)/sys.mak # target OS-specific definitions, like ar, etc. include ${RULESBASE}/gmake/$(OSNAME)/targetsys.mak +# Extern projects for everyday usage and settings for ones +include ${RULESBASE}/gmake/extern.mak # compiler, compiler options include ${RULESBASE}/gmake/$(COMPILER_NAME).mak # rules to make dirs for targets include ${RULESBASE}/gmake/targetdirs.mak -# Extern projects for everyday usage and settings for ones -include ${RULESBASE}/gmake/extern.mak # os-specific local rules (or other project-specific definitions) -include specific.mak This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |