diff options
| author | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-05-30 17:03:33 +0000 |
|---|---|---|
| committer | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-05-30 17:03:33 +0000 |
| commit | 6f8cef248e1467595a932707eb9a9c53af2e8839 (patch) | |
| tree | 14beaef0e6253ab3657b59a90231d2788806307a /src/Makefile-publicServer | |
| parent | 13cb3930e9989aba57f0301a821f64ceed29af20 (diff) | |
- opravene memory leaky pomocou vlagrindu
- sietovy protokol je navrhnuty tal aby client odsiselal info o tom, ze obdrzal spravu
git-svn-id: http://opensvn.csie.org/tuxanci_ng@57 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'src/Makefile-publicServer')
| -rwxr-xr-x | src/Makefile-publicServer | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile-publicServer b/src/Makefile-publicServer index 69edffd..f81d845 100755 --- a/src/Makefile-publicServer +++ b/src/Makefile-publicServer @@ -11,7 +11,7 @@ BUILD_DIR = ../build-server LIBS = -ldl FILES = list.o modules.o director.o configFile.o tux.o shot.o myTimer.o \ - buffer.o arena.o arenaFile.o textFile.o gun.o item.o idManager.o\ + buffer.o arena.o arenaFile.o textFile.o gun.o item.o idManager.o checkFront.o\ udp.o proto.o server.o publicServer.o net_multiplayer.o serverConfigFile.o main.o $(BUILD_DIR)/publicserver: mkdir_build $(FILES) @@ -29,6 +29,9 @@ idManager.o: idManager.c ../include/idManager.h modules.o: modules.c $(CC) $(CFLAGS) -o $(BUILD_DIR)/modules.o -c modules.c +checkFront.o: checkFront.c ../include/checkFront.h + $(CC) $(CFLAGS) -o $(BUILD_DIR)/checkFront.o -c checkFront.c + publicServer.o: publicServer.c $(CC) $(CFLAGS) -o $(BUILD_DIR)/publicServer.o -c publicServer.c |