[Scummvm-cvs-logs] CVS: tools Makefile,1.2,1.3

Travis Howell kirben at users.sourceforge.net
Sat Jul 27 05:54:03 CEST 2002


Update of /cvsroot/scummvm/tools
In directory usw-pr-cvs1:/tmp/cvs-serv15162

Modified Files:
	Makefile 
Log Message:

Fix compilers


Index: Makefile
===================================================================
RCS file: /cvsroot/scummvm/tools/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Makefile	8 Jul 2002 11:31:00 -0000	1.2
+++ Makefile	27 Jul 2002 12:53:35 -0000	1.3
@@ -1,6 +1,7 @@
 SRC=.
 
-CC      = g++
+CC      = gcc
+CXX     = g++
 CFLAGS  = -g -O -Wall -Wstrict-prototypes -Wuninitialized -Wno-long-long -Wno-multichar 
 LDFLAGS :=
 
@@ -9,13 +10,13 @@
 all: $(TARGETS)
 
 descumm3$(EXEEXT) : descumm3.o
-	$(CC) $(LFLAGS) -o $@ $+
+	$(CXX) $(LFLAGS) -o $@ $+
 
 descumm5$(EXEEXT) : descumm5.o
-	$(CC) $(LFLAGS) -o $@ $+
+	$(CXX) $(LFLAGS) -o $@ $+
 
 descumm6$(EXEEXT) : descumm6.o
-	$(CC) $(LFLAGS) -o $@ $+
+	$(CXX) $(LFLAGS) -o $@ $+
 
 extract$(EXEEXT) : extract.o
 	$(CC) $(LFLAGS) -o $@ $+





More information about the Scummvm-git-logs mailing list