From 2d776fcd61be168e1ff0ff2e4a5e71835e7cea19 Mon Sep 17 00:00:00 2001 From: oroborus Date: Sat, 28 Jun 2008 16:38:35 +0000 Subject: - prekopanie adresarovej struktury, prva cast git-svn-id: http://opensvn.csie.org/tuxanci_ng@77 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e --- src/base/Makefile | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 src/base/Makefile (limited to 'src/base/Makefile') diff --git a/src/base/Makefile b/src/base/Makefile new file mode 100644 index 0000000..6de422d --- /dev/null +++ b/src/base/Makefile @@ -0,0 +1,67 @@ + +all: arena.o arenaFile.o director.o gun.o homeDirector.o checkFront.o idManager.o item.o list.o main.o modules.o myTimer.o net_multiplayer.o protect.o proto.o server.o shot.o space.o storage.o textFile.o tux.o + +arena.o: arena.c arena.h + $(CC) $(CFLAGS) -o arena.o -c arena.c + +arenaFile.o: arenaFile.c arenaFile.h + $(CC) $(CFLAGS) -o arenaFile.o -c arenaFile.c + +director.o: director.c director.h + $(CC) $(CFLAGS) -o director.o -c director.c + +gun.o: gun.c gun.h + $(CC) $(CFLAGS) -o gun.o -c gun.c + +homeDirector.o: homeDirector.c homeDirector.h + $(CC) $(CFLAGS) -o homeDirector.o -c homeDirector.c + +checkFront.o: checkFront.c checkFront.h + $(CC) $(CFLAGS) -o checkFront.o -c checkFront.c + +idManager.o: idManager.c idManager.h + $(CC) $(CFLAGS) -o idManager.o -c idManager.c + +item.o: item.c item.h + $(CC) $(CFLAGS) -o item.o -c item.c + +list.o: list.c list.h + $(CC) $(CFLAGS) -o list.o -c list.c + +main.o: main.c main.h + $(CC) $(CFLAGS) -o main.o -c main.c + +modules.o: modules.c modules.h + $(CC) $(CFLAGS) -o modules.o -c modules.c + +myTimer.o: myTimer.c myTimer.h + $(CC) $(CFLAGS) -o myTimer.o -c myTimer.c + +net_multiplayer.o: net_multiplayer.c net_multiplayer.h + $(CC) $(CFLAGS) -o net_multiplayer.o -c net_multiplayer.c + +protect.o: protect.c protect.h + $(CC) $(CFLAGS) -o protect.o -c protect.c + +server.o: server.c server.h + $(CC) $(CFLAGS) -o server.o -c server.c + +shot.o: shot.c shot.h + $(CC) $(CFLAGS) -o shot.o -c shot.c + +space.o: space.c space.h + $(CC) $(CFLAGS) -o space.o -c space.c + +storage.o: storage.c storage.h + $(CC) $(CFLAGS) -o storage.o -c storage.c + +textFile.o: textFile.c textFile.h + $(CC) $(CFLAGS) -o textFile.o -c textFile.c + +tux.o: tux.c tux.h + $(CC) $(CFLAGS) -o tux.o -c tux.c + +clean: + rm -rf *.o + + -- cgit v1.2.3