Mercurial > hg > Game > Cerium
view TaskManager/Test/simple_render/Makefile @ 38:babf9a330418
*** empty log message ***
author | gongo |
---|---|
date | Wed, 13 Feb 2008 10:29:00 +0900 |
parents | 1e17e0b441a7 |
children | b6858e9fe2b4 |
line wrap: on
line source
CC = g++ CFLAGS = -O9 -g -Wall `sdl-config --cflags` `xml2-config --cflags`\ -I../../../include/TaskManager -I. 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 = task/task_init.o task/create_pp.o task/update_sgp.o task/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 *~