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 71 72 73 74 75 76 77 78
|
if HAVE_LOCAL_LIBREGF
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@ \
@LIBFWNT_CPPFLAGS@ \
@PTHREAD_CPPFLAGS@
noinst_LTLIBRARIES = libregf.la
libregf_la_SOURCES = \
libregf_checksum.c libregf_checksum.h \
libregf_codepage.h \
libregf_data_block_key.c libregf_data_block_key.h \
libregf_data_block_stream.c libregf_data_block_stream.h \
libregf_data_type.c libregf_data_type.h \
libregf_debug.c libregf_debug.h \
libregf_definitions.h \
libregf_error.c libregf_error.h \
libregf_extern.h \
libregf_file.c libregf_file.h \
libregf_file_header.c libregf_file_header.h \
libregf_hive_bin.c libregf_hive_bin.h \
libregf_hive_bin_cell.c libregf_hive_bin_cell.h \
libregf_hive_bin_header.c libregf_hive_bin_header.h \
libregf_hive_bins_list.c libregf_hive_bins_list.h \
libregf_io_handle.c libregf_io_handle.h \
libregf_key.c libregf_key.h \
libregf_key_item.c libregf_key_item.h \
libregf_key_tree.c libregf_key_tree.h \
libregf_libbfio.h \
libregf_libcdata.h \
libregf_libcerror.h \
libregf_libclocale.h \
libregf_libcnotify.h \
libregf_libcthreads.h \
libregf_libfcache.h \
libregf_libfdata.h \
libregf_libfdatetime.h \
libregf_libfwnt.h \
libregf_libuna.h \
libregf_multi_string.c libregf_multi_string.h \
libregf_named_key.c libregf_named_key.h \
libregf_notify.c libregf_notify.h \
libregf_security_key.c libregf_security_key.h \
libregf_support.c libregf_support.h \
libregf_types.h \
libregf_unused.h \
libregf_value.c libregf_value.h \
libregf_value_item.c libregf_value_item.h \
libregf_value_key.c libregf_value_key.h \
regf_cell_values.h \
regf_file_header.h \
regf_hive_bin.h
endif
MAINTAINERCLEANFILES = \
Makefile.in
distclean: clean
/bin/rm -f Makefile
splint:
@echo "Running splint on libregf ..."
-splint -preproc -redef $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(libregf_la_SOURCES)
|