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