summaryrefslogtreecommitdiff
path: root/src/Makefile-listserver
diff options
context:
space:
mode:
authororoborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-06-28 16:38:35 +0000
committeroroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-06-28 16:38:35 +0000
commit2d776fcd61be168e1ff0ff2e4a5e71835e7cea19 (patch)
tree7cf274897bf540d5332d446f583ffd066e4e2e1d /src/Makefile-listserver
parentb877ae23ac5d380ab3aa48d7724045cf4883b186 (diff)
- prekopanie adresarovej struktury, prva cast
git-svn-id: http://opensvn.csie.org/tuxanci_ng@77 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'src/Makefile-listserver')
-rwxr-xr-xsrc/Makefile-listserver27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/Makefile-listserver b/src/Makefile-listserver
deleted file mode 100755
index c2cba31..0000000
--- a/src/Makefile-listserver
+++ /dev/null
@@ -1,27 +0,0 @@
-
-#CC = /usr/local/gcc/bin/gcc
-CC = gcc
-
-#CFLAGS = -O2 -DSUPPORT_NET_SDL_UDP -I../include -Wall `sdl-config --cflags`
-CFLAGS = -g -O0 -std=c99 -D_GNU_SOURCE=1 -I../include -Wall
-#CFLAGS = -O2 -DDESTDIR=\"$(DESTDIR)\" `sdl-config --cflags` -I../include -Wall
-
-BUILD_DIR = .
-LIBS =
-
-FILES = listServer.o udp.o list.o
-
-listServer: $(FILES)
- $(CC) $(CFLAGS) $(LIBS) -o $(BUILD_DIR)/listServer $(BUILD_DIR)/*.o
-
-listServer.o: listServer.c
- $(CC) $(CFLAGS) -o $(BUILD_DIR)/listServer.o -c listServer.c
-
-list.o: list.c ../include/list.h
- $(CC) $(CFLAGS) -o $(BUILD_DIR)/list.o -c list.c
-
-udp.o: udp.c ../include/udp.h
- $(CC) $(CFLAGS) -o $(BUILD_DIR)/udp.o -c udp.c
-
-clean:
- rm -rf *.o *.c~ ../include/*.h~ Makefile~