diff options
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 |