Annotation of embedaddon/bmon/src/Makefile.am, revision 1.1

1.1     ! misho       1: # -*- Makefile -*-
        !             2: 
        !             3: bin_PROGRAMS = bmon
        !             4: 
        !             5: bmon_CFLAGS = \
        !             6:        -I${top_srcdir}/include \
        !             7:        -I${top_builddir}/include \
        !             8:        -DSYSCONFDIR=\"$(sysconfdir)\" \
        !             9:        -D_GNU_SOURCE \
        !            10:        $(CURSES_CFLAGS) \
        !            11:        $(CONFUSE_CFLAGS) \
        !            12:        $(LIBNL_CFLAGS) \
        !            13:        $(LIBNL_ROUTE_CFLAGS)
        !            14: 
        !            15: bmon_LDADD = \
        !            16:        $(CURSES_LIB) \
        !            17:        $(CONFUSE_LIBS) \
        !            18:        $(LIBNL_LIBS) \
        !            19:        $(LIBNL_ROUTE_LIBS)
        !            20: 
        !            21: bmon_SOURCES = \
        !            22:        utils.c \
        !            23:        unit.c \
        !            24:        conf.c \
        !            25:        input.c \
        !            26:        output.c \
        !            27:        group.c \
        !            28:        element.c \
        !            29:        attr.c \
        !            30:        element_cfg.c \
        !            31:        history.c \
        !            32:        graph.c \
        !            33:        bmon.c \
        !            34:        module.c \
        !            35:        in_netlink.c \
        !            36:        in_null.c \
        !            37:        in_dummy.c \
        !            38:        in_proc.c \
        !            39:        in_sysctl.c \
        !            40:        out_null.c \
        !            41:        out_format.c \
        !            42:        out_ascii.c \
        !            43:        out_curses.c

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