Annotation of embedaddon/iftop/Makefile.am, revision 1.1.1.2

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: #
1.1.1.2 ! misho      10: # $Id: Makefile.am,v 1.13 2014/01/19 20:11:39 pdw Exp $
1.1       misho      11: #
                     12: 
1.1.1.2 ! misho      13: sbin_PROGRAMS = iftop 
        !            14: #iftop-dump
1.1       misho      15: 
                     16: iftop_SOURCES = addr_hash.c edline.c hash.c iftop.c ns_hash.c \
                     17:                  options.c resolver.c screenfilter.c serv_hash.c \
1.1.1.2 ! misho      18:                  sorted_list.c threadprof.c ui_common.c ui.c tui.c util.c \
1.1       misho      19:                 addrs_ioctl.c addrs_dlpi.c dlcommon.c \
                     20:                 stringmap.c cfgfile.c vector.c
                     21: 
1.1.1.2 ! misho      22: #iftop_dump_SOURCES = counter_hash.c hash.c iftop-dump.c  \
        !            23: #                 options.c \
        !            24: #                 util.c \
        !            25: #               addrs_ioctl.c addrs_dlpi.c dlcommon.c \
        !            26: #               stringmap.c cfgfile.c 
        !            27: 
        !            28: 
        !            29: 
1.1       misho      30: noinst_HEADERS = addr_hash.h ether.h ethertype.h extract.h hash.h iftop.h \
                     31:                  integers.h ip.h llc.h ns_hash.h options.h resolver.h \
                     32:                  screenfilter.h serv_hash.h sll.h sorted_list.h tcp.h \
1.1.1.2 ! misho      33:                  threadprof.h token.h ui_common.h ui.h tui.h dlcommon.h stringmap.h \
1.1       misho      34:                 vector.h cfgfile.h ppp.h
                     35: 
                     36: man_MANS = iftop.8
                     37: 
                     38: SUBDIRS = config
                     39: 
                     40: iftop.cat: iftop.8
                     41:        (echo -e ".pl 1100i" ; cat iftop.8 ; echo ".pl \n(nlu+10") | groff -Tascii -man > iftop.cat
                     42: 
                     43: iftop.spec: iftop.spec.in configure.in
1.1.1.2 ! misho      44:        sed 's/__VERSION__/$(PACKAGE_VERSION)/' < iftop.spec.in > iftop.spec
1.1       misho      45: 
                     46: ## These need to be distributed along with configure:
                     47: 
                     48: EXTRA_DIST = bootstrap README ChangeLog AUTHORS COPYING INSTALL TODO \
                     49:                Makefile.OLD $(man_MANS) iftop.cat iftop.spec
                     50:              
                     51: MAINTERCLEANFILES = Makefile.in aclocal.m4 configure configuration.h.in \
                     52:                     stamp-h.in iftop.spec
                     53: 
                     54: ACLOCAL = aclocal -I @ac_aux_dir@
                     55: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>