File:  [ELWIX - Embedded LightWeight unIX -] / gpl / axl / src / Makefile.am
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Fri Feb 17 12:50:03 2012 UTC (12 years, 4 months ago) by misho
Branches: axl, MAIN
CVS tags: HEAD, AXL0_6_7
version 0.6.7

    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: 
    7: INCLUDES = $(compiler_options) -g -I$(top_srcdir) $(LIBRARIES_CFLAGS) -DVERSION=\""$(AXL_VERSION)"\" \
    8: 	-DPACKAGE_DTD_DIR=\""$(datadir)"\" -DPACKAGE_TOP_DIR=\""$(top_srcdir)"\"  \
    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: 
   21: # libaxl_la_LIBADD = -lm
   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>