aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/Makefile.in
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1998-11-12 06:01:27 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1998-11-12 06:01:27 +0000
commitc0f191e9e0c2d49564e42a23cfcd6a391569892c (patch)
treeb5635327a52f09fe041a808311d39e8bde8b3def /wiretap/Makefile.in
parentfcb4c78a6a01d22f0db9d6de870342511030cb01 (diff)
I added the LANalzyer file format to wiretap. I cleaned up some code in the
wiretap functions to be more generic and therefore allow an easier integration of more packet-capture file types. I also put in all the GPL copyrights in the wiretap code. svn path=/trunk/; revision=83
Diffstat (limited to 'wiretap/Makefile.in')
-rw-r--r--wiretap/Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/wiretap/Makefile.in b/wiretap/Makefile.in
index 957629736c..b015cedd07 100644
--- a/wiretap/Makefile.in
+++ b/wiretap/Makefile.in
@@ -77,6 +77,7 @@ noinst_LIBRARIES = libwiretap.a
libwiretap_a_SOURCES = \
buffer.c \
file.c \
+ lanalyzer.c \
ngsniffer.c \
wtap.c
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
@@ -90,7 +91,7 @@ CPPFLAGS = @CPPFLAGS@
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
libwiretap_a_LIBADD =
-libwiretap_a_OBJECTS = buffer.o file.o ngsniffer.o wtap.o
+libwiretap_a_OBJECTS = buffer.o file.o lanalyzer.o ngsniffer.o wtap.o
AR = ar
CFLAGS = @CFLAGS@
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
@@ -103,7 +104,8 @@ DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
TAR = tar
GZIP = --best
-DEP_FILES = .deps/buffer.P .deps/file.P .deps/ngsniffer.P .deps/wtap.P
+DEP_FILES = .deps/buffer.P .deps/file.P .deps/lanalyzer.P \
+.deps/ngsniffer.P .deps/wtap.P
SOURCES = $(libwiretap_a_SOURCES)
OBJECTS = $(libwiretap_a_OBJECTS)