Mercurial > hg > Members > kono > tree_dandy2
diff Makefile @ 33:9a5300cedb14
add Test
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 21 May 2011 18:52:56 +0900 |
parents | 8abcc221bbac |
children | 3b92a4b17049 |
line wrap: on
line diff
--- a/Makefile Sat May 21 15:15:26 2011 +0900 +++ b/Makefile Sat May 21 18:52:56 2011 +0900 @@ -8,7 +8,7 @@ LIBS += `sdl-config --libs`,-framework,OpenGL -lSDL_mixer -lSDL_image `xml2-config --libs` LIBS += -lCerium -lFifoManager -TARGET = demo dandy +TARGET = demo dandy test1 OBJS = Character.o Bom.o tokuten.o collision.o count2.o Character_state.o schedule3.o tama2.o syokika.o Ss.o sound.o profile.o debug.o trace.o LoadSprite.o xml.o b64_de.o tree_controll.o object.o all: $(TARGET) @@ -22,8 +22,11 @@ dandy: $(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) + clean: - rm -f $(TARGET) $(OBJS) main.o sgoex.o + rm -f $(TARGET) $(OBJS) main.o sgoex.o Dandy.o SgoexCerium.o Test.o .c.o: $(CC) $(CFLAGS) $(INCLUDES) -c $<