diff options
author | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-11 08:02:45 +0000 |
---|---|---|
committer | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-11 08:02:45 +0000 |
commit | 0a6590d13fb2d1aa223b82c3eb5573d10b1448a4 (patch) | |
tree | 116096ca76e101d30afc6793a442baeadc65ded3 /src/plugins/Makefile | |
parent | 039a6fe417861beebacfebbe2ad3b7530ce51f77 (diff) | |
download | hercules-0a6590d13fb2d1aa223b82c3eb5573d10b1448a4.tar.gz hercules-0a6590d13fb2d1aa223b82c3eb5573d10b1448a4.tar.bz2 hercules-0a6590d13fb2d1aa223b82c3eb5573d10b1448a4.tar.xz hercules-0a6590d13fb2d1aa223b82c3eb5573d10b1448a4.zip |
- Console plugin working when built as Windows native.
The linux part has the same strategy but uses the new asynchronous input abstraction layer.
The abstraction layer is there to facilitate changes, was really handy when trying to get it working as windows native. :)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9641 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/plugins/Makefile')
-rw-r--r-- | src/plugins/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/Makefile b/src/plugins/Makefile index 7d100e591..989ae0939 100644 --- a/src/plugins/Makefile +++ b/src/plugins/Makefile @@ -1,5 +1,5 @@ -OBJECTS = sample.dll sig.dll pid.dll gui.dll upnp.dll httpd.dll +OBJECTS = sample.dll sig.dll pid.dll gui.dll upnp.dll httpd.dll console.dll ifdef CYGWIN PLUGINEXT = dll @@ -8,7 +8,7 @@ else endif PLUGINS = $(OBJECTS:%.dll=%.$(PLUGINEXT)) -COMMON_H = ../common/plugin.h +COMMON_H = ../common/plugin.h ../common/cbasetypes.h txt sql all: $(PLUGINS) @@ -40,7 +40,7 @@ upnp.$(PLUGINEXT): ../../plugins/upnp.conf ../../plugins/upnp.conf: upnp.txt depend: - makedepend -fGNUmakefile -o.$(PLUGINEXT) -Y. -Y../common *.c + makedepend -fGNUmakefile -o.$(PLUGINEXT) -Y. -Y../common *.c $(PLUGINS:%=../../plugins/%) clean: rm -rf $(PLUGINS) GNUmakefile |