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

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 \
1.1.1.2 ! misho      10:        -Wall \
1.1       misho      11:        $(CURSES_CFLAGS) \
                     12:        $(CONFUSE_CFLAGS) \
                     13:        $(LIBNL_CFLAGS) \
                     14:        $(LIBNL_ROUTE_CFLAGS)
                     15: 
                     16: bmon_LDADD = \
                     17:        $(CURSES_LIB) \
                     18:        $(CONFUSE_LIBS) \
                     19:        $(LIBNL_LIBS) \
                     20:        $(LIBNL_ROUTE_LIBS)
                     21: 
                     22: bmon_SOURCES = \
                     23:        utils.c \
                     24:        unit.c \
                     25:        conf.c \
                     26:        input.c \
                     27:        output.c \
                     28:        group.c \
                     29:        element.c \
                     30:        attr.c \
                     31:        element_cfg.c \
                     32:        history.c \
                     33:        graph.c \
                     34:        bmon.c \
                     35:        module.c \
                     36:        in_netlink.c \
                     37:        in_null.c \
                     38:        in_dummy.c \
                     39:        in_proc.c \
                     40:        in_sysctl.c \
                     41:        out_null.c \
                     42:        out_format.c \
                     43:        out_ascii.c \
                     44:        out_curses.c

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