Annotation of gpl/axl/knife/Makefile.am, revision 1.1

1.1     ! misho       1: EXTRA_DIST      = \
        !             2:        axl-knife.c axl-knife.h \
        !             3:        exarg.c exarg.h \
        !             4:        Makefile.win 
        !             5: 
        !             6: if ENABLE_AXL_LOG
        !             7: LOG = -DSHOW_DEBUG_LOG
        !             8: endif
        !             9: 
        !            10: if ENABLE_AXL_NS
        !            11: NS = -DAXL_NS_SUPPORT
        !            12: NS_LIB = $(top_builddir)/ns/libaxl-ns.la
        !            13: endif
        !            14: 
        !            15: INCLUDES = -I$(top_srcdir)/src/ -I$(top_srcdir)/ns -Wall $(LOG) $(NS) -DVERSION=\"$(AXL_VERSION)\" -D__COMPILING_AXL_KNIFE__   -D__axl_disable_broken_bool_def__  $(EXARG_FLAGS)
        !            16: 
        !            17: # replace with bin_PROGRAMS to check performance
        !            18: bin_PROGRAMS = axl-knife
        !            19: 
        !            20: axl_knife_SOURCES = axl-knife.c axl-knife.h exarg.h exarg.c
        !            21: axl_knife_LDADD   = $(top_builddir)/src/libaxl.la $(NS_LIB)
        !            22: 
        !            23: 
        !            24: # copy exarg dependency to not force people to download a library with
        !            25: # two files
        !            26: exarg.h exarg.c: 
        !            27:        test -e exarg.h || cp $(top_srcdir)/../libexarg/src/exarg.h .
        !            28:        test -e exarg.c || cp $(top_srcdir)/../libexarg/src/exarg.c .

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