diff options
Diffstat (limited to 'src/plugins/Makefile')
-rw-r--r-- | src/plugins/Makefile | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/plugins/Makefile b/src/plugins/Makefile index 989ae0939..f576995f6 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 console.dll +OBJECTS = sample.dll sig.dll pid.dll gui.dll upnp.dll console.dll ifdef CYGWIN PLUGINEXT = dll @@ -16,12 +16,6 @@ txt sql all: $(PLUGINS) $(CC) $(CFLAGS) -shared -o ../../plugins/$@ $< @touch $@ -httpd.$(PLUGINEXT): httpd.c - $(CC) $(CFLAGS) -shared -o ../../plugins/$@ $< \ - ../common/obj/minimalloc.o ../common/obj/db.o ../common/obj/showmsg.o \ - ../common/obj/utils.o ../common/obj/ers.o - @touch $@ - sig.$(PLUGINEXT): sig.c $(CC) $(CFLAGS) -shared -o ../../plugins/$@ $< \ ../common/obj/showmsg.o ../common/obj/utils.o \ @@ -29,14 +23,12 @@ sig.$(PLUGINEXT): sig.c @touch $@ gui.$(PLUGINEXT): ../../plugins/gui.conf -httpd.$(PLUGINEXT): ../../plugins/httpd.conf upnp.$(PLUGINEXT): ../../plugins/upnp.conf ../../plugins/%.conf: %.txt cp -r $< $@ ../../plugins/gui.conf: gui.txt -../../plugins/httpd.conf: httpd.txt ../../plugins/upnp.conf: upnp.txt depend: |