diff TaskManager/Test/simple_render/Makefile @ 26:3f68b2ef4fb0

*** empty log message ***
author gongo
date Sun, 10 Feb 2008 18:31:48 +0900
parents
children 1e17e0b441a7
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TaskManager/Test/simple_render/Makefile	Sun Feb 10 18:31:48 2008 +0900
@@ -0,0 +1,21 @@
+CC = g++
+CFLAGS  = -g -Wall `sdl-config --cflags` `xml2-config --cflags`\
+	-I../../../include/TaskManager
+LIBS    = `sdl-config --libs` -lSDL_image -Wl,-framework,OpenGL `xml2-config --libs`\
+	-L../../ -lmanager
+TARGET = test_nogl
+#OBJS = scene.o demonstration.o sys.o base64_de.o pad.o texture.o xml.o polygon.o viewer.o main.o
+OBJS = create_pp.o update_sgp.o create_sgp.o triangle.o vertex.o span.o sys.o base64_de.o pad.o texture.o xml.o polygon.o viewer.o main.o
+
+
+all:$(TARGET)
+
+$(TARGET): $(OBJS) 
+	$(CC) -o $@ $(OBJS) $(LIBS)
+
+.cpp.o:
+	$(CC) $(CFLAGS) -o $@ -c $<
+
+clean:
+	rm -f $(TARGET) $(OBJS)
+	rm -f *~