forked from appneta/tcpreplay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
40 lines (25 loc) · 1.15 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# $Id: Makefile.am 1630 2007-02-03 04:23:14Z aturner $
#SUBDIRS = plugins
noinst_LIBRARIES = libtcpedit.a
BUILT_SOURCES = tcpedit_stub.h
libtcpedit_a_SOURCES = tcpedit.c parse_args.c edit_packet.c \
portmap.c dlt.c checksum.c incremental_checksum.c \
tcpedit_api.c fuzzing.c rewrite_sequence.c
manpages: tcpedit.1
tcpedit.1: tcpedit_stub.def
@AUTOGEN@ -T agman1.tpl --base-name tcpedit $<
tcpedit.c: tcpedit_stub.h
# Get AutoOpts search path
#opts_list=`find plugins -type d -not -regex ".*\.svn.*" -not -regex ".*\.deps.*" -exec echo -n "-L {} " \;`
tcpedit_stub.h: tcpedit_stub.def tcpedit_opts.def plugins/dlt_stub.def
@AUTOGEN@ $(opts_list) $<
AM_CFLAGS = -I$(srcdir). -I$(srcdir)/.. -I$(srcdir)/../common -I$(srcdir)/../.. @LDNETINC@ $(LIBOPTS_CFLAGS) $(LNAV_CFLAGS)
noinst_HEADERS = tcpedit.h edit_packet.h portmap.h \
tcpedit_stub.h parse_args.h dlt.h checksum.h \
incremental_checksum.h tcpedit_api.h \
tcpedit_types.h plugins.h plugins_api.h \
plugins_types.h fuzzing.h rewrite_sequence.h
MOSTLYCLEANFILES = *~
MAINTAINERCLEANFILES = Makefile.in tcpedit_stub.h tcpedit.1
EXTRA_DIST = tcpedit_stub.def tcpedit_opts.def
include plugins/Makefile.am