diff options
| author | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-03-02 19:41:48 +0000 |
|---|---|---|
| committer | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-03-02 19:41:48 +0000 |
| commit | 44404eb5063bd5f040c7a4d8605aa3d43e3a968a (patch) | |
| tree | d9b4fceb80a2abf6103fd6022de80dd3286caaf0 /src/Makefile | |
| parent | 8a14d60d2078b4bcdfc789b1b9794e2008979f02 (diff) | |
- par uprav
- dopisany credits
git-svn-id: http://opensvn.csie.org/tuxanci_ng@8 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'src/Makefile')
| -rwxr-xr-x | src/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 31f3393..2d5921b 100755 --- a/src/Makefile +++ b/src/Makefile @@ -1,7 +1,9 @@ CC = gcc -CFLAGS = -g -O0 -DDISTDIR=\"$(DISTDIR)\" `sdl-config --cflags` -I../include -Wall +#CFLAGS = -g -O0 -DDISTDIR=\"$(DISTDIR)\" `sdl-config --cflags` -I../include -Wall +CFLAGS = -O2 -DDISTDIR=\"$(DISTDIR)\" `sdl-config --cflags` -I../include -Wall + LIBS = `sdl-config --libs` -lSDL_image -lSDL_ttf -lSDL_mixer FILES = interface.o font.o list.o image.o layer.o director.o configFile.o tux.o main.o \ @@ -9,7 +11,7 @@ FILES = interface.o font.o list.o image.o layer.o director.o configFile.o tux.o buffer.o dynamicInt.o arena.o arenaFile.o textFile.o sound.o audio.o music.o gun.o \ item.o widget_label.o screen_mainMenu.o widget_button.o screen_analyze.o widget_textfield.o \ widget_check.o widget_image.o screen_setting.o screen_gameType.o screen_choiceArena.o \ - widget_buttonimage.o + widget_buttonimage.o screen_credits.o tuxanci-ng: $(FILES) @@ -111,6 +113,9 @@ screen_gameType.o: screen_gameType.c ../include/screen_gameType.h screen_choiceArena.o: screen_choiceArena.c ../include/screen_choiceArena.h $(CC) $(CFLAGS) -o screen_choiceArena.o -c screen_choiceArena.c +screen_credits.o: screen_credits.c ../include/screen_credits.h + $(CC) $(CFLAGS) -o screen_credits.o -c screen_credits.c + widget_label.o: widget_label.c ../include/widget_label.h $(CC) $(CFLAGS) -o widget_label.o -c widget_label.c |