Annotation of gpl/axl/src/Makefile.am, revision 1.1.1.2

1.1       misho       1: EXTRA_DIST = Makefile.win axl_config_win32.h libaxl.vcproj libaxl.def
                      2: 
                      3: if ENABLE_AXL_LOG
                      4: LOG = -DSHOW_DEBUG_LOG
                      5: endif
                      6: 
1.1.1.2 ! misho       7: INCLUDES = $(compiler_options) -g -I$(top_srcdir) $(LIBRARIES_CFLAGS) -DVERSION=\""$(AXL_VERSION)"\" \
        !             8:        -DPACKAGE_DTD_DIR=\""$(datadir)"\" -DPACKAGE_TOP_DIR=\""$(top_srcdir)"\"  \
1.1       misho       9:        -D__axl_disable_broken_bool_def__ \
                     10:        -DVERSION=\"$(AXL_VERSION)\" $(LOG)
                     11: 
                     12: libaxlincludedir = $(includedir)/axl
                     13: 
                     14: lib_LTLIBRARIES = libaxl.la
                     15: 
                     16: libaxl_la_SOURCES     = axl.c  axl_decl.c axl_node.c axl_doc.c axl_error.c axl_stream.c axl_log.c axl_list.c axl_stack.c axl_dtd.c axl_hash.c axl_factory.c
                     17: libaxlinclude_HEADERS = axl.h axl_config.h axl_decl.h axl_node.h axl_doc.h axl_error.h axl_stream.h axl_log.h axl_list.h axl_stack.h axl_dtd.h axl_hash.h axl_factory.h
                     18: 
                     19: libaxl_la_LDFLAGS = -no-undefined -export-symbols-regex '^(axl|__axl|_axl).*'
                     20: 
1.1.1.2 ! misho      21: # libaxl_la_LIBADD = -lm
1.1       misho      22: 
                     23: libaxl.def: update-def
                     24: 
                     25: update-def:
                     26:        echo "EXPORTS" > libaxl.def
                     27:        cat .libs/libaxl.exp >> libaxl.def
                     28: 

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