diff options
author | wizputer <wizputer@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-27 19:32:30 +0000 |
---|---|---|
committer | wizputer <wizputer@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-27 19:32:30 +0000 |
commit | 486b4f2a12b41507b67a1a93ae5871b3be447914 (patch) | |
tree | 8196d22d0fce973ac6e53b24735776ba9dcaf77f /src/common/Makefile | |
parent | ecb15e6101bc1912bb2520151c45ed69af80feb8 (diff) | |
parent | f0da8da932031212f34aa97eff882f72cb69cc2a (diff) | |
download | hercules-486b4f2a12b41507b67a1a93ae5871b3be447914.tar.gz hercules-486b4f2a12b41507b67a1a93ae5871b3be447914.tar.bz2 hercules-486b4f2a12b41507b67a1a93ae5871b3be447914.tar.xz hercules-486b4f2a12b41507b67a1a93ae5871b3be447914.zip |
correct directory structure
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@387 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/Makefile')
-rw-r--r-- | src/common/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/common/Makefile b/src/common/Makefile new file mode 100644 index 000000000..b15d4d481 --- /dev/null +++ b/src/common/Makefile @@ -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 |