summaryrefslogtreecommitdiff
path: root/misc/src/char/GNUmakefile
diff options
context:
space:
mode:
authorDennis Friis <peavey@placid.dk>2008-11-03 07:00:17 +0000
committerDennis Friis <peavey@placid.dk>2008-11-03 07:00:17 +0000
commita7f3726a0a7f16bccb664871fe35e8d2f2572f00 (patch)
tree52d1d2d53186ea4a8bbeb0c879f7494a9771fde7 /misc/src/char/GNUmakefile
parentd569cd100a2f60ec99104a83c1e54306f94dd06f (diff)
downloadtmwa-a7f3726a0a7f16bccb664871fe35e8d2f2572f00.tar.gz
tmwa-a7f3726a0a7f16bccb664871fe35e8d2f2572f00.tar.bz2
tmwa-a7f3726a0a7f16bccb664871fe35e8d2f2572f00.tar.xz
tmwa-a7f3726a0a7f16bccb664871fe35e8d2f2572f00.zip
Do a bit of cleanup I never got around to do, before moving from my repo to sf.net
Diffstat (limited to 'misc/src/char/GNUmakefile')
-rw-r--r--misc/src/char/GNUmakefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/misc/src/char/GNUmakefile b/misc/src/char/GNUmakefile
deleted file mode 100644
index dd21288..0000000
--- a/misc/src/char/GNUmakefile
+++ /dev/null
@@ -1,17 +0,0 @@
-all: char-server
-txt: char-server
-
-COMMON_OBJ = ../common/core.o ../common/socket.o ../common/timer.o ../common/db.o ../common/lock.o ../common/malloc.o
-COMMON_H = ../common/core.h ../common/socket.h ../common/timer.h ../common/mmo.h ../common/db.h ../common/lock.h ../common/timer.h ../common/malloc.h
-char-server: char.o inter.o int_party.o int_guild.o int_storage.o int_pet.o $(COMMON_OBJ)
- $(CC) -o ../../$@ $^
-
-char.o: char.c char.h inter.h int_pet.h $(COMMON_H) ../common/version.h
-inter.o: inter.c inter.h int_party.h int_guild.h int_storage.h int_pet.h char.h $(COMMON_H)
-int_party.o: int_party.c int_party.h inter.h char.h $(COMMON_H)
-int_guild.o: int_guild.c int_guild.h int_storage.h inter.h char.h $(COMMON_H)
-int_storage.o: int_storage.c int_storage.h int_guild.h inter.h char.h $(COMMON_H)
-int_pet.o: int_pet.c int_pet.h inter.h char.h $(COMMON_H)
-
-clean:
- rm -f *.o ../../char-server