diff options
| author | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-05-02 16:57:36 +0000 |
|---|---|---|
| committer | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-05-02 16:57:36 +0000 |
| commit | 9058b5c0bfc9a05c9004cfbbcdd3bb85d80ed6fc (patch) | |
| tree | acf351bdd648594639005f71e7e7d8921bb70fcb /src/Makefile | |
| parent | 29173b3199ea526b6f9de13ee9255db3900f3f42 (diff) | |
- o obsluhu odstaneni streli pri vybuchu sa stara server
- server sa _nemusi_ restartovat kazdych 49 dni
- uptime sa rata v sekundach, v statuse je aj nazov areny
- drobne upravy v kode ( vymazanie mensej duplicity kodu )
git-svn-id: http://opensvn.csie.org/tuxanci_ng@49 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'src/Makefile')
| -rwxr-xr-x | src/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 2ce95be..df5b2d2 100755 --- a/src/Makefile +++ b/src/Makefile @@ -15,7 +15,7 @@ FILES = interface.o font.o list.o image.o layer.o director.o configFile.o tux.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 screen_table.o \ - sdl_udp.o proto.o server.o client.o term.o keytable.o language.o + sdl_udp.o proto.o server.o client.o term.o keytable.o language.o game.o tuxanci-ng: $(FILES) $(CC) $(CFLAGS) $(LIBS) -o $(BUILD_DIR)/tuxanci-ng $(BUILD_DIR)/*.o @@ -176,5 +176,8 @@ keytable.o: keytable.c ../include/keytable.h language.o: language.c ../include/language.h $(CC) $(CFLAGS) -o $(BUILD_DIR)/language.o -c language.c +game.o: game.c ../include/game.h + $(CC) $(CFLAGS) -o $(BUILD_DIR)/game.o -c game.c + clean: rm -rf *.o *.c~ ../include/*.h~ Makefile~ |