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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
if HAVE_LOCAL_LIBEXE
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
-I$(top_srcdir)/common \
@LIBCERROR_CPPFLAGS@ \
@LIBCTHREADS_CPPFLAGS@ \
@LIBCDATA_CPPFLAGS@ \
@LIBCLOCALE_CPPFLAGS@ \
@LIBCNOTIFY_CPPFLAGS@ \
@LIBCSPLIT_CPPFLAGS@ \
@LIBUNA_CPPFLAGS@ \
@LIBCFILE_CPPFLAGS@ \
@LIBCPATH_CPPFLAGS@ \
@LIBBFIO_CPPFLAGS@ \
@LIBFCACHE_CPPFLAGS@ \
@LIBFDATA_CPPFLAGS@ \
@LIBFDATETIME_CPPFLAGS@ \
@PTHREAD_CPPFLAGS@
noinst_LTLIBRARIES = libexe.la
libexe_la_SOURCES = \
exe_file_header.h \
exe_le_header.h \
exe_mz_header.h \
exe_ne_header.h \
exe_pe_header.h \
exe_section_table.h \
libexe_codepage.h \
libexe_data_directory_descriptor.h \
libexe_debug.c libexe_debug.h \
libexe_debug_data.c libexe_debug_data.h \
libexe_definitions.h \
libexe_error.c libexe_error.h \
libexe_export_table.c libexe_export_table.h \
libexe_extern.h \
libexe_file.c libexe_file.h \
libexe_import_table.c libexe_import_table.h \
libexe_io_handle.c libexe_io_handle.h \
libexe_le_header.c libexe_le_header.h \
libexe_libbfio.h \
libexe_libcdata.h \
libexe_libcerror.h \
libexe_libclocale.h \
libexe_libcnotify.h \
libexe_libfcache.h \
libexe_libfdata.h \
libexe_libfdatetime.h \
libexe_libuna.h \
libexe_mz_header.c libexe_mz_header.h \
libexe_ne_header.c libexe_ne_header.h \
libexe_notify.c libexe_notify.h \
libexe_section.c libexe_section.h \
libexe_section_descriptor.c libexe_section_descriptor.h \
libexe_section_io_handle.c libexe_section_io_handle.h \
libexe_support.c libexe_support.h \
libexe_types.h \
libexe_unused.h
endif
MAINTAINERCLEANFILES = \
Makefile.in
distclean: clean
/bin/rm -f Makefile
splint:
@echo "Running splint on libexe ..."
-splint -preproc -redef $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(libexe_la_SOURCES)
|