summaryrefslogtreecommitdiff
path: root/src/plugins/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/Makefile.in')
-rw-r--r--src/plugins/Makefile.in54
1 files changed, 0 insertions, 54 deletions
diff --git a/src/plugins/Makefile.in b/src/plugins/Makefile.in
deleted file mode 100644
index 1b92ea3fa..000000000
--- a/src/plugins/Makefile.in
+++ /dev/null
@@ -1,54 +0,0 @@
-
-COMMON_OBJ = ../common/obj_all/showmsg.o ../common/obj_all/utils.o ../common/obj_all/strlib.o \
- ../common/obj_all/minimalloc.o
-COMMON_H = ../common/plugin.h ../common/cbasetypes.h \
- ../common/showmsg.h ../common/utils.h ../common/strlib.h \
- ../common/malloc.h
-
-PLUGINS = sample sig pid console
-
-@SET_MAKE@
-
-#####################################################################
-.PHONY : all $(PLUGINS) clean help
-
-all: $(PLUGINS)
-
-sample: sample@DLLEXT@
-
-sig: sig@DLLEXT@
-
-pid: pid@DLLEXT@
-
-console: console@DLLEXT@
-
-clean:
- @echo " CLEAN plugins"
- @rm -rf *.o
-
-help:
- @echo "possible targets are $(PLUGINS:%='%') 'all' 'clean' 'help'"
- @echo "'sample' - sample plugin"
- @echo "'sig' - signal handler plugin"
- @echo "'pid' - process id plugin"
- @echo "'console' - console plugin"
- @echo "'all' - builds all above targets"
- @echo "'clean' - cleans builds and objects"
- @echo "'help' - outputs this message"
-
-#####################################################################
-
-%@DLLEXT@: %.c
- @echo " CC $<"
- @@CC@ @CFLAGS@ @CPPFLAGS@ @LDFLAGS@ -shared -o ../../plugins/$@ $<
-
-sig@DLLEXT@: sig.c $(COMMON_OBJ)
- @echo " CC $<"
- @@CC@ @CFLAGS@ @CPPFLAGS@ @LDFLAGS@ -shared -o ../../plugins/$@ $< $(COMMON_OBJ)
-
-# missing common object files
-../common/obj_all/%.o: ../common/%.c $(COMMON_H)
- @$(MAKE) -C ../common txt
-
-../common/obj_all/mini%.o: ../common/%.c $(COMMON_H)
- @$(MAKE) -C ../common txt