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

1.1       misho       1: EXTRA_DIST = Makefile.win libaxl-babel.def # libaxl-babel.vcproj
                      2: 
                      3: if ENABLE_AXL_LOG
                      4: LOG = -DSHOW_DEBUG_LOG
                      5: endif
                      6: 
                      7: INCLUDES = -Wall -g -I../src -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_babelincludedir = $(includedir)/axl
                     13: 
                     14: lib_LTLIBRARIES = libaxl-babel.la
                     15: 
                     16: libaxl_babel_la_SOURCES     = \
                     17:        axl_babel.c \
                     18:        axl_babel_iso885915.c \
                     19:        axl_babel_iso88591.c \
                     20:        axl_babel_iso88592.c \
                     21:        axl_babel_iso88593.c \
                     22:        axl_babel_iso88594.c \
                     23:        axl_babel_iso88595.c \
                     24:        axl_babel_iso88596.c \
                     25:        axl_babel_iso88597.c \
                     26:        axl_babel_iso88598.c \
                     27:        axl_babel_iso88599.c
                     28: 
                     29: libaxl_babelinclude_HEADERS = \
                     30:        axl_babel.h \
                     31:        axl_babel_iso885915.h \
                     32:        axl_babel_iso88591.h \
                     33:        axl_babel_iso88592.h \
                     34:        axl_babel_iso88593.h \
                     35:        axl_babel_iso88594.h \
                     36:        axl_babel_iso88595.h \
                     37:        axl_babel_iso88596.h \
                     38:        axl_babel_iso88597.h \
                     39:        axl_babel_iso88598.h \
                     40:        axl_babel_iso88599.h
                     41: 
                     42: libaxl_babel_la_LIBADD  = $(top_builddir)/src/libaxl.la        
                     43: 
                     44: libaxl_babel_la_LDFLAGS = -no-undefined -export-symbols-regex '^(axl|__axl|_axl).*'
                     45: 
                     46: libaxl-babel.def: update-def
                     47: 
                     48: update-def:
                     49:        echo "EXPORTS" > libaxl-babel.def
                     50:        cat .libs/libaxl-babel.exp >> libaxl-babel.def
                     51: 
                     52: refresh-tables: gen-table
                     53:        ./gen-table codes.txt iso885915.utf8.txt iso-8859-15
                     54:        ./gen-table codes.txt iso88591.utf8.txt iso-8859-1
                     55:        ./gen-table codes.txt iso88592.utf8.txt iso-8859-2
                     56:        ./gen-table codes.txt iso88593.utf8.txt iso-8859-3
                     57:        ./gen-table codes.txt iso88594.utf8.txt iso-8859-4
                     58:        ./gen-table codes.txt iso88595.utf8.txt iso-8859-5
                     59:        ./gen-table codes.txt iso88596.utf8.txt iso-8859-6
                     60:        ./gen-table codes.txt iso88597.utf8.txt iso-8859-7
                     61:        ./gen-table codes.txt iso88598.utf8.txt iso-8859-8
                     62:        ./gen-table codes.txt iso88599.utf8.txt iso-8859-9
                     63: 
                     64: 
                     65: # replace with bin_PROGRAMS to check performance
                     66: noinst_PROGRAMS = gen-codes gen-table read-codes
                     67: 
                     68: gen_codes_SOURCES  = gen-codes.c
                     69: gen_codes_LDADD   = $(top_builddir)/src/libaxl.la 
                     70: 
                     71: gen_table_SOURCES  = gen-table.c
                     72: gen_table_LDADD   = $(top_builddir)/src/libaxl.la 
                     73: 
                     74: read_codes_SOURCES = read-codes.c
                     75: read_codes_LDADD   = $(top_builddir)/src/libaxl.la 
                     76: 
                     77: 

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