Revision: 419
http://svn.sourceforge.net/cadcdev/?rev=419&view=rev
Author: c99koder
Date: 2007-07-17 16:29:11 -0700 (Tue, 17 Jul 2007)
Log Message:
-----------
Tiki: SDL: Adjust makefile rules to use CC and CXX variables
Modified Paths:
--------------
tiki/sdl/Makefile.rules
Modified: tiki/sdl/Makefile.rules
===================================================================
--- tiki/sdl/Makefile.rules 2007-07-17 23:24:50 UTC (rev 418)
+++ tiki/sdl/Makefile.rules 2007-07-17 23:29:11 UTC (rev 419)
@@ -1,14 +1,14 @@
%.o: %.c
@echo "Compiling $< to $@"
- @gcc $(CFLAGS) -c $< -o $@
+ @$(CC) $(CFLAGS) -c $< -o $@
%.o: %.cc
@echo "Compiling $< to $@"
- @g++ $(CFLAGS) $(CXXFLAGS) -c $< -o $@
+ @$(CXX) $(CFLAGS) $(CXXFLAGS) -c $< -o $@
%.o: %.cpp
@echo "Compiling $< to $@"
- @g++ $(CFLAGS) $(CXXFLAGS) -c $< -o $@
+ @$(CXX) $(CFLAGS) $(CXXFLAGS) -c $< -o $@
subdirs: $(patsubst %, _dir_%, $(SUBDIRS))
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|