Annotation of embedaddon/iftop/Makefile.am, revision 1.1.1.1
1.1 misho 1: #
2: # Makefile.am:
3: # Automake file for iftop.
4: #
5: # I don't understand this stuff, so I just stole it from the tpop3d
6: # distribution. That means that, really, Mark Longair should take credit for
7: # it.
8: # -- Chris Lightfoot
9: #
10: # $Id: Makefile.am,v 1.9 2004/07/27 08:45:17 pdw Exp $
11: #
12:
13: sbin_PROGRAMS = iftop
14:
15: iftop_SOURCES = addr_hash.c edline.c hash.c iftop.c ns_hash.c \
16: options.c resolver.c screenfilter.c serv_hash.c \
17: sorted_list.c threadprof.c ui.c util.c \
18: addrs_ioctl.c addrs_dlpi.c dlcommon.c \
19: stringmap.c cfgfile.c vector.c
20:
21: noinst_HEADERS = addr_hash.h ether.h ethertype.h extract.h hash.h iftop.h \
22: integers.h ip.h llc.h ns_hash.h options.h resolver.h \
23: screenfilter.h serv_hash.h sll.h sorted_list.h tcp.h \
24: threadprof.h token.h ui.h dlcommon.h stringmap.h \
25: vector.h cfgfile.h ppp.h
26:
27: man_MANS = iftop.8
28:
29: SUBDIRS = config
30:
31: iftop.cat: iftop.8
32: (echo -e ".pl 1100i" ; cat iftop.8 ; echo ".pl \n(nlu+10") | groff -Tascii -man > iftop.cat
33:
34: iftop.spec: iftop.spec.in configure.in
35: sed 's/__VERSION__/$(VERSION)/' < iftop.spec.in > iftop.spec
36:
37: ## These need to be distributed along with configure:
38:
39: EXTRA_DIST = bootstrap README ChangeLog AUTHORS COPYING INSTALL TODO \
40: Makefile.OLD $(man_MANS) iftop.cat iftop.spec
41:
42: MAINTERCLEANFILES = Makefile.in aclocal.m4 configure configuration.h.in \
43: stamp-h.in iftop.spec
44:
45: ACLOCAL = aclocal -I @ac_aux_dir@
46:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>