diff Makefile @ 115:31dd5c07f7c1

class OBJECT:SceanGraph
author e085768
date Wed, 15 Jun 2011 23:31:59 +0900
parents 8c96cadde050
children ed702e49cc6c
line wrap: on
line diff
--- a/Makefile	Thu Jun 09 18:07:46 2011 +0900
+++ b/Makefile	Wed Jun 15 23:31:59 2011 +0900
@@ -10,25 +10,16 @@
 LIBS	+=  `sdl-config --libs`,-framework,OpenGL -lSDL_mixer -lSDL_image `xml2-config --libs`
 LIBS += -lCerium -lFifoManager
 
-TARGET = demo #dandy test1
+TARGET = magoroku #dandy test1
 OBJS  = ${SRCS:.cc=.o}
 
 all: $(TARGET)
 
-test: $(TARGET)
-	./demo  -test
-
-demo: $(OBJS) 
-	$(CC) $(ABI) -o $@ $(OBJS) $(LIBS)
-
-magoroku: $(OBJS) Dandy.o SgoexCerium.o
-	$(CC) $(ABI) -o $@ $(OBJS) Dandy.o SgoexCerium.o $(LIBS)
-
-test1: $(OBJS) Test.o SgoexCerium.o
-	$(CC) $(ABI) -o $@ $(OBJS) Test.o SgoexCerium.o $(LIBS)
+magoroku: $(OBJS) Magoroku.o SgoexCerium.o
+	$(CC) $(ABI) -o $@ $(OBJS) Magoroku.o SgoexCerium.o $(LIBS)
 
 clean:
-	rm -f $(TARGET) $(OBJS) #main.o sgoex.o Dandy.o  SgoexCerium.o Test.o
+	rm -f $(TARGET) $(OBJS) main.o sgoex.o Magoroku.o  SgoexCerium.o Test.o
 
 .c.o:
 	$(CC) $(CFLAGS) $(INCLUDES) -c $<