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..d1a8ee0c6 --- /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 +socket.o: socket.c socket.h mmo.h +timer.o: timer.c timer.h +grfio.o: grfio.c grfio.h +db.o: db.c db.h +lock.o: lock.h +nullpo.o: nullpo.c nullpo.h +malloc.o: malloc.c malloc.h +showmsg.o: showmsg.c showmsg.h + +clean: + rm -f *.o |