1## $Id: Makefile.am,v 1.19 2002/04/15 14:42:49 dugsong Exp $
2
3AUTOMAKE_OPTIONS = foreign no-dependencies
4
5SUBDIRS = scripts win32
6
7INCLUDES = @DNETINC@ @PCAPINC@ @EVENTINC@
8
9LDADD = @LIBOBJS@ @DNETLIB@ @PCAPLIB@ @EVENTLIB@
10
11sbin_PROGRAMS = fragroute fragtest
12
13fragroute_SOURCES = fragroute.c argv.c argv.h bget.c bget.h err.h mod.c mod.h \
14	pcaputil.c pcaputil.h pkt.c pkt.h queue.h randutil.c randutil.h tun.h \
15	mod_delay.c mod_drop.c mod_dup.c mod_echo.c mod_ip_chaff.c \
16	mod_ip_frag.c mod_ip_opt.c mod_ip_ttl.c mod_ip_tos.c mod_order.c \
17	mod_print.c mod_tcp_chaff.c mod_tcp_opt.c mod_tcp_seg.c
18
19fragtest_SOURCES = fragtest.c bget.c mod_ip_frag.c pcaputil.c pkt.c randutil.c
20
21man_MANS = fragroute.8 fragtest.8
22
23fragroute.8.txt: fragroute.8
24	groff -t -e -man -Tascii fragroute.8 | col -bx > $@
25
26fragtest.8.txt: fragtest.8
27	groff -t -e -man -Tascii fragtest.8 | col -bx > $@
28
29sysconf_DATA = fragroute.conf
30
31EXTRA_DIST = LICENSE acconfig.h fragroute.conf $(man_MANS)
32
33DISTCLEANFILES = *~
34