diff options
Diffstat (limited to 'src/common/GNUmakefile')
-rw-r--r-- | src/common/GNUmakefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/common/GNUmakefile b/src/common/GNUmakefile new file mode 100644 index 000000000..b15d4d481 --- /dev/null +++ b/src/common/GNUmakefile @@ -0,0 +1,14 @@ +txt sql all: core.o socket.o timer.o grfio.o db.o lock.o nullpo.o malloc.o showmsg.o + +core.o: core.c core.h showmsg.h +socket.o: socket.c socket.h mmo.h showmsg.h +timer.o: timer.c timer.h showmsg.h +grfio.o: grfio.c grfio.h showmsg.h +db.o: db.c db.h showmsg.h +lock.o: lock.h showmsg.h +nullpo.o: nullpo.c nullpo.h showmsg.h +malloc.o: malloc.c malloc.h showmsg.h +showmsg.o: showmsg.c showmsg.h + +clean: + rm -f *.o |