[pure-lang-svn] SF.net SVN: pure-lang: [13] pure/trunk/Makefile
Status: Beta
Brought to you by:
agraef
|
From: <ag...@us...> - 2008-05-01 08:48:48
|
Revision: 13
http://pure-lang.svn.sourceforge.net/pure-lang/?rev=13&view=rev
Author: agraef
Date: 2008-05-01 01:48:54 -0700 (Thu, 01 May 2008)
Log Message:
-----------
g++ shouldn't be hardcoded, use $(CXX) instead.
Modified Paths:
--------------
pure/trunk/Makefile
Modified: pure/trunk/Makefile
===================================================================
--- pure/trunk/Makefile 2008-05-01 06:55:24 UTC (rev 12)
+++ pure/trunk/Makefile 2008-05-01 08:48:54 UTC (rev 13)
@@ -92,10 +92,10 @@
all: pure
pure: $(OBJECT)
- g++ -o $@ -rdynamic $(OBJECT) $(LIBS)
+ $(CXX) -o $@ -rdynamic $(OBJECT) $(LIBS)
pure.o: pure.cc
- g++ $(CXXFLAGS) -DVERSION='"$(version)"' -DPURELIB='"$(libdir)"' -c -o $@ $<
+ $(CXX) $(CXXFLAGS) -DVERSION='"$(version)"' -DPURELIB='"$(libdir)"' -c -o $@ $<
lexer.cc: lexer.ll
flex -o lexer.cc $<
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|