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 31 32 33 34 35 36 37 38
|
if HAVE_LOCAL_LIBFMOS
AM_CPPFLAGS = \
-I../include -I$(top_srcdir)/include \
-I../common -I$(top_srcdir)/common \
@LIBCERROR_CPPFLAGS@ \
@LIBCTHREADS_CPPFLAGS@ \
@LIBCNOTIFY_CPPFLAGS@ \
@PTHREAD_CPPFLAGS@
noinst_LTLIBRARIES = libfmos.la
libfmos_la_SOURCES = \
libfmos_adc.c libfmos_adc.h \
libfmos_definitions.h \
libfmos_extern.h \
libfmos_error.c libfmos_error.h \
libfmos_libcerror.h \
libfmos_libcnotify.h \
libfmos_lzfse.c libfmos_lzfse.h \
libfmos_lzfse_bit_stream.c libfmos_lzfse_bit_stream.h \
libfmos_lzfse_decoder.c libfmos_lzfse_decoder.h \
libfmos_lzvn.c libfmos_lzvn.h \
libfmos_notify.c libfmos_notify.h \
libfmos_support.c libfmos_support.h \
libfmos_types.h \
libfmos_unused.h
endif
DISTCLEANFILES = \
Makefile \
Makefile.in
sources-local: $(BUILT_SOURCES)
splint-local:
@echo "Running splint on libfmos ..."
-splint -preproc -redef $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(libfmos_la_SOURCES)
|