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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
AM_CPPFLAGS = \
-I../include -I$(top_srcdir)/include \
-I../common -I$(top_srcdir)/common \
@LIBCERROR_CPPFLAGS@ \
@LIBCDATA_CPPFLAGS@ \
@LIBCLOCALE_CPPFLAGS@ \
@LIBCNOTIFY_CPPFLAGS@ \
@LIBCSPLIT_CPPFLAGS@ \
@LIBUNA_CPPFLAGS@ \
@LIBCFILE_CPPFLAGS@ \
@LIBCPATH_CPPFLAGS@ \
@LIBBFIO_CPPFLAGS@ \
@LIBFCACHE_CPPFLAGS@ \
@LIBFDATA_CPPFLAGS@ \
@LIBFGUID_CPPFLAGS@ \
@LIBFUSE_CPPFLAGS@ \
@LIBPHDI_DLL_IMPORT@
AM_LDFLAGS = @STATIC_LDFLAGS@
bin_PROGRAMS = \
phdiinfo \
phdimount
phdiinfo_SOURCES = \
byte_size_string.c byte_size_string.h \
info_handle.c info_handle.h \
phdiinfo.c \
phditools_getopt.c phditools_getopt.h \
phditools_i18n.h \
phditools_libbfio.h \
phditools_libcdata.h \
phditools_libcerror.h \
phditools_libclocale.h \
phditools_libcnotify.h \
phditools_libcpath.h \
phditools_libfguid.h \
phditools_libphdi.h \
phditools_libuna.h \
phditools_output.c phditools_output.h \
phditools_signal.c phditools_signal.h \
phditools_unused.h
phdiinfo_LDADD = \
@LIBFGUID_LIBADD@ \
@LIBCNOTIFY_LIBADD@ \
@LIBCLOCALE_LIBADD@ \
../libphdi/libphdi.la \
@LIBCERROR_LIBADD@ \
@LIBINTL@
phdimount_SOURCES = \
mount_dokan.c mount_dokan.h \
mount_file_entry.c mount_file_entry.h \
mount_file_system.c mount_file_system.h \
mount_fuse.c mount_fuse.h \
mount_handle.c mount_handle.h \
phdimount.c \
phditools_getopt.c phditools_getopt.h \
phditools_i18n.h \
phditools_libbfio.h \
phditools_libcdata.h \
phditools_libcerror.h \
phditools_libclocale.h \
phditools_libcnotify.h \
phditools_libcpath.h \
phditools_libphdi.h \
phditools_libuna.h \
phditools_output.c phditools_output.h \
phditools_signal.c phditools_signal.h \
phditools_unused.h
phdimount_LDADD = \
@LIBFUSE_LIBADD@ \
@LIBCPATH_LIBADD@ \
@LIBCSPLIT_LIBADD@ \
@LIBCNOTIFY_LIBADD@ \
@LIBCLOCALE_LIBADD@ \
@LIBCDATA_LIBADD@ \
../libphdi/libphdi.la \
@LIBCERROR_LIBADD@ \
@LIBINTL@
DISTCLEANFILES = \
Makefile \
Makefile.in
splint-local:
@echo "Running splint on phdiinfo ..."
-splint -preproc -redef $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(phdiinfo_SOURCES)
@echo "Running splint on phdimount ..."
-splint -preproc -redef $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(phdimount_SOURCES)
|