summaryrefslogtreecommitdiffstats
path: root/output/pcap/Makefile.in
diff options
context:
space:
mode:
authorlaforge <laforge>2005-10-08 08:42:42 +0000
committerlaforge <laforge>2005-10-08 08:42:42 +0000
commitfcda89e78e544230bc5a5132257cd108a6314a76 (patch)
tree00876180e6240a28823749df57506f47237d4527 /output/pcap/Makefile.in
parent9c9ede1ae8f04ba1aef9c84128312ee5180c55f8 (diff)
port PCAP to ulogd2
Diffstat (limited to 'output/pcap/Makefile.in')
-rw-r--r--output/pcap/Makefile.in30
1 files changed, 0 insertions, 30 deletions
diff --git a/output/pcap/Makefile.in b/output/pcap/Makefile.in
deleted file mode 100644
index d469c2b..0000000
--- a/output/pcap/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_PCAP.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)