Annotation of gpl/axl/ns/Makefile.am, revision 1.1.1.1

1.1       misho       1: EXTRA_DIST = Makefile.win libaxl-ns.def libaxl-ns.vcproj
                      2: 
                      3: if ENABLE_AXL_LOG
                      4: LOG = -DSHOW_DEBUG_LOG
                      5: endif
                      6: 
                      7: INCLUDES = -Wall -g -I$(top_srcdir)/src -I$(top_srcdir) $(LIBRARIES_CFLAGS) -DVERSION=\""$(AXL_VERSION)"\" \
                      8:        -DPACKAGE_DTD_DIR=\""$(datadir)"\" -DPACKAGE_TOP_DIR=\""$(top_srcdir)"\" -Wall -ansi \
                      9:        -D__axl_disable_broken_bool_def__ \
                     10:        -DVERSION=\"$(AXL_VERSION)\" $(LOG)
                     11: 
                     12: libaxl_nsincludedir = $(includedir)/axl
                     13: 
                     14: lib_LTLIBRARIES = libaxl-ns.la
                     15: 
                     16: libaxl_ns_la_SOURCES     = axl_ns_doc.c axl_ns_node.c
                     17: libaxl_nsinclude_HEADERS = axl_ns.h axl_ns_doc.h axl_ns_node.h
                     18: libaxl_ns_la_LIBADD      = $(top_builddir)/src/libaxl.la
                     19: 
                     20: libaxl_ns_la_LDFLAGS = -no-undefined -export-symbols-regex '^(axl|__axl|_axl).*'
                     21: 
                     22: libaxl-ns.def: update-def
                     23: 
                     24: update-def:
                     25:        echo "EXPORTS" > libaxl-ns.def
                     26:        cat .libs/libaxl-ns.exp >> libaxl-ns.def
                     27: 

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