diff options
| author | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-03-09 21:36:26 +0000 |
|---|---|---|
| committer | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-03-09 21:36:26 +0000 |
| commit | 1438b79069821cba744a4ea4739324560be64fb6 (patch) | |
| tree | 1229b2aca2937be2e838fb2d787ab31d83cd59c7 /src/Makefile | |
| parent | da85e88878251f6a980fef95bd47109169a3cf7c (diff) | |
- pridany doomovsky adresar
- moznost ulozit nastavenie
- tabulka najlepsich
- zabytie protigraca minou sa rata do bodov supera
git-svn-id: http://opensvn.csie.org/tuxanci_ng@13 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'src/Makefile')
| -rwxr-xr-x | src/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile index f96674f..fd17130 100755 --- a/src/Makefile +++ b/src/Makefile @@ -1,8 +1,8 @@ CC = gcc -CFLAGS = -g -O0 -DDISTDIR=\"$(DISTDIR)\" `sdl-config --cflags` -I../include -Wall -#CFLAGS = -O2 -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 @@ -11,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 screen_credits.o teleport.o pipe.o homeDirector.o + widget_buttonimage.o screen_credits.o teleport.o pipe.o homeDirector.o screen_table.o tuxanci-ng: $(FILES) $(CC) $(CFLAGS) $(LIBS) -o tuxanci-ng $(FILES) @@ -142,5 +142,8 @@ pipe.o: pipe.c ../include/pipe.h homeDirector.o: homeDirector.c ../include/homeDirector.h $(CC) $(CFLAGS) -o homeDirector.o -c homeDirector.c +screen_table.o: screen_table.c ../include/screen_table.h + $(CC) $(CFLAGS) -o screen_table.o -c screen_table.c + clean: rm -rf *.o *.c~ *.h~ tuxanci-ng |