[complement-svn] SF.net SVN: complement: [1802] trunk/complement/explore/Makefiles
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2008-01-11 13:44:51
|
Revision: 1802 http://complement.svn.sourceforge.net/complement/?rev=1802&view=rev Author: complement Date: 2008-01-11 05:41:47 -0800 (Fri, 11 Jan 2008) Log Message: ----------- fix _FORCE_CXX macro reference Modified Paths: -------------- trunk/complement/explore/Makefiles/ChangeLog trunk/complement/explore/Makefiles/gmake/CC.mak trunk/complement/explore/Makefiles/gmake/aCC.mak trunk/complement/explore/Makefiles/gmake/gcc.mak Modified: trunk/complement/explore/Makefiles/ChangeLog =================================================================== --- trunk/complement/explore/Makefiles/ChangeLog 2008-01-09 12:05:22 UTC (rev 1801) +++ trunk/complement/explore/Makefiles/ChangeLog 2008-01-11 13:41:47 UTC (rev 1802) @@ -1,3 +1,8 @@ +2008-01-11 Petr Ovtchenkov <pt...@is...> + + * gmake/gcc.mak, gmake/CC.mak, gmake/aCC.mak: fix _FORCE_CXX macro + reference. + 2008-01-08 Petr Ovtchenkov <pt...@is...> * gmake/topdoc.mak: base rules for LaTeX and XFig documentation. Modified: trunk/complement/explore/Makefiles/gmake/CC.mak =================================================================== --- trunk/complement/explore/Makefiles/gmake/CC.mak 2008-01-09 12:05:22 UTC (rev 1801) +++ trunk/complement/explore/Makefiles/gmake/CC.mak 2008-01-11 13:41:47 UTC (rev 1802) @@ -1,6 +1,6 @@ # Time-stamp: <06/11/10 15:57:24 ptr> # -# Copyright (c) 1997-1999, 2002, 2003, 2005, 2006 +# Copyright (c) 1997-1999, 2002, 2003, 2005-2008 # Petr Ovtchenkov # # Portion Copyright (c) 1999-2001 @@ -14,13 +14,13 @@ ifndef _FORCE_CXX CXX := CC else -CXX := $_FORCE_CXX +CXX := ${_FORCE_CXX} endif ifndef _FORCE_CC CC := cc else -CC := $_FORCE_CC +CC := ${_FORCE_CC} endif CXX_VERSION := $(shell ${CXX} -V 2>&1 | grep ${CXX} | awk '{ print $$4; }') Modified: trunk/complement/explore/Makefiles/gmake/aCC.mak =================================================================== --- trunk/complement/explore/Makefiles/gmake/aCC.mak 2008-01-09 12:05:22 UTC (rev 1801) +++ trunk/complement/explore/Makefiles/gmake/aCC.mak 2008-01-11 13:41:47 UTC (rev 1802) @@ -1,6 +1,6 @@ # Time-stamp: <07/05/31 01:07:37 ptr> # -# Copyright (c) 1997-1999, 2002, 2003, 2005, 2006 +# Copyright (c) 1997-1999, 2002, 2003, 2005-2008 # Petr Ovtchenkov # # Portion Copyright (c) 1999-2001 @@ -12,13 +12,13 @@ ifndef _FORCE_CXX CXX := aCC else -CXX := $_FORCE_CXX +CXX := ${_FORCE_CXX} endif ifndef _FORCE_CC CC := aCC else -CC := $_FORCE_CC +CC := ${_FORCE_CC} endif CXX_VERSION := $(shell ${CXX} --version 2>&1 | grep ${CXX} | awk '{ print $$6; }') Modified: trunk/complement/explore/Makefiles/gmake/gcc.mak =================================================================== --- trunk/complement/explore/Makefiles/gmake/gcc.mak 2008-01-09 12:05:22 UTC (rev 1801) +++ trunk/complement/explore/Makefiles/gmake/gcc.mak 2008-01-11 13:41:47 UTC (rev 1802) @@ -1,6 +1,6 @@ # Time-stamp: <07/07/12 10:51:42 ptr> # -# Copyright (c) 1997-1999, 2002, 2003, 2005, 2006 +# Copyright (c) 1997-1999, 2002, 2003, 2005-2008 # Petr Ovtchenkov # # Portion Copyright (c) 1999-2001 @@ -12,13 +12,13 @@ ifndef _FORCE_CXX CXX := c++ else -CXX := $_FORCE_CXX +CXX := ${_FORCE_CXX} endif ifndef _FORCE_CC CC := gcc else -CC := $_FORCE_CC +CC := ${_FORCE_CC} endif ifeq ($(OSNAME), windows) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |