summaryrefslogtreecommitdiff
path: root/src/char/GNUmakefile
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-03-08 14:23:14 -0600
committerJared Adams <jaxad0127@gmail.com>2009-03-08 14:23:14 -0600
commit23c6c0e2c8b10bbecf1e673723914618170ac551 (patch)
treef535dd293a14adb58e33196c1ec9573c8ba0348a /src/char/GNUmakefile
parent30210c583785263a964dee242b5a7efdfdb7e89a (diff)
downloadtmwa-23c6c0e2c8b10bbecf1e673723914618170ac551.tar.gz
tmwa-23c6c0e2c8b10bbecf1e673723914618170ac551.tar.bz2
tmwa-23c6c0e2c8b10bbecf1e673723914618170ac551.tar.xz
tmwa-23c6c0e2c8b10bbecf1e673723914618170ac551.zip
Some more cleanup
Diffstat (limited to 'src/char/GNUmakefile')
-rw-r--r--src/char/GNUmakefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/char/GNUmakefile b/src/char/GNUmakefile
deleted file mode 100644
index 1725d51..0000000
--- a/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