summaryrefslogtreecommitdiffstats
path: root/output
diff options
context:
space:
mode:
Diffstat (limited to 'output')
-rw-r--r--output/Makefile.am8
-rw-r--r--output/Makefile.in30
2 files changed, 8 insertions, 30 deletions
diff --git a/output/Makefile.am b/output/Makefile.am
new file mode 100644
index 0000000..2039bb9
--- /dev/null
+++ b/output/Makefile.am
@@ -0,0 +1,8 @@
+
+lib_LTLIBRARIES = ulogd_output_LOGEMU.la # ulogd_output_OPRINT.la ulogd_output_SYSLOG.la
+
+ulogd_output_LOGEMU_SOURCES = ulogd_output_LOGEMU.c
+ulogd_output_SYSLOG_SOURCES = ulogd_output_SYSLOG.c
+ulogd_output_OPRINT_SOURCES = ulogd_output_OPRINT.c
+
+
diff --git a/output/Makefile.in b/output/Makefile.in
deleted file mode 100644
index 6641e6a..0000000
--- a/output/Makefile.in
+++ /dev/null
@@ -1,30 +0,0 @@
-#
-include @top_srcdir@/Rules.make
-
-CFLAGS+=-I@top_srcdir@ -I@top_srcdir@/libipulog/include -I@top_srcdir@/include
-SH_CFLAGS:=$(CFLAGS) -fPIC
-
-# Normally You should not need to change anything below
-#
-
-SHARED_LIBS=ulogd_output_LOGEMU.so
-
-all: $(SHARED_LIBS)
-
-distrib:
-
-$(SHARED_LIBS): %.so: %_sh.o
- $(LD) -shared -o $@ $< -lc -lpcap
-
-%_sh.o: %.c
- $(CC) $(SH_CFLAGS) -o $@ -c $<
-
-clean:
- $(RM) $(SHARED_LIBS) *.o
-
-distclean:
- $(RM) Makefile
-
-install: all
- $(INSTALL) -m 755 -d $(DESTDIR)$(ULOGD_LIB_PATH)
- $(INSTALL) -m 755 *.so $(DESTDIR)$(ULOGD_LIB_PATH)