1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
if HAVE_LOCAL_LIBCLOCALE
AM_CPPFLAGS = \
-DLOCALEDIR=\"$(datadir)/locale\" \
-I../include -I$(top_srcdir)/include \
-I../common -I$(top_srcdir)/common \
@LIBCERROR_CPPFLAGS@
noinst_LTLIBRARIES = libclocale.la
libclocale_la_SOURCES = \
libclocale_codepage.c libclocale_codepage.h \
libclocale_definitions.h \
libclocale_extern.h \
libclocale_libcerror.h \
libclocale_locale.c libclocale_locale.h \
libclocale_support.c libclocale_support.h \
libclocale_unused.h \
libclocale_wide_string.c libclocale_wide_string.h
endif
DISTCLEANFILES = \
Makefile \
Makefile.in
sources-local: $(BUILT_SOURCES)
splint-local:
@echo "Running splint on libclocale ..."
-splint -preproc -redef $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(libclocale_la_SOURCES)
|