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
|
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@ \
@LIBFVALUE_CPPFLAGS@ \
@LIBFUSE_CPPFLAGS@ \
@LIBVMDK_DLL_IMPORT@
AM_LDFLAGS = @STATIC_LDFLAGS@
bin_PROGRAMS = \
vmdkinfo \
vmdkmount
vmdkinfo_SOURCES = \
byte_size_string.c byte_size_string.h \
info_handle.c info_handle.h \
vmdkinfo.c \
vmdktools_getopt.c vmdktools_getopt.h \
vmdktools_i18n.h \
vmdktools_libbfio.h \
vmdktools_libcerror.h \
vmdktools_libclocale.h \
vmdktools_libcnotify.h \
vmdktools_libfvalue.h \
vmdktools_libuna.h \
vmdktools_libvmdk.h \
vmdktools_output.c vmdktools_output.h \
vmdktools_signal.c vmdktools_signal.h \
vmdktools_unused.h
vmdkinfo_LDADD = \
@LIBCNOTIFY_LIBADD@ \
@LIBCLOCALE_LIBADD@ \
../libvmdk/libvmdk.la \
@LIBCERROR_LIBADD@ \
@LIBINTL@
vmdkmount_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 \
vmdkmount.c \
vmdktools_getopt.c vmdktools_getopt.h \
vmdktools_i18n.h \
vmdktools_libbfio.h \
vmdktools_libcdata.h \
vmdktools_libcerror.h \
vmdktools_libclocale.h \
vmdktools_libcnotify.h \
vmdktools_libcpath.h \
vmdktools_libfvalue.h \
vmdktools_libuna.h \
vmdktools_libvmdk.h \
vmdktools_output.c vmdktools_output.h \
vmdktools_signal.c vmdktools_signal.h \
vmdktools_unused.h
vmdkmount_LDADD = \
@LIBFUSE_LIBADD@ \
@LIBCPATH_LIBADD@ \
@LIBCSPLIT_LIBADD@ \
@LIBCNOTIFY_LIBADD@ \
@LIBCLOCALE_LIBADD@ \
@LIBCDATA_LIBADD@ \
../libvmdk/libvmdk.la \
@LIBCERROR_LIBADD@ \
@LIBINTL@
DISTCLEANFILES = \
Makefile \
Makefile.in
splint-local:
@echo "Running splint on vmdkinfo ..."
-splint -preproc -redef $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(vmdkinfo_SOURCES)
@echo "Running splint on vmdkmount ..."
-splint -preproc -redef $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(vmdkmount_SOURCES)
|