File: Makefile.am

package info (click to toggle)
libbde 20240502-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,468 kB
  • sloc: ansic: 213,802; sh: 6,444; makefile: 1,452; python: 784; cpp: 88; sed: 16
file content (104 lines) | stat: -rw-r--r-- 2,467 bytes parent folder | download | duplicates (2)
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
94
95
96
97
98
99
100
101
102
103
104
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@ \
	@LIBFDATETIME_CPPFLAGS@ \
	@LIBFGUID_CPPFLAGS@ \
	@LIBFUSE_CPPFLAGS@ \
	@LIBBDE_DLL_IMPORT@

AM_LDFLAGS = @STATIC_LDFLAGS@

bin_PROGRAMS = \
	bdeinfo \
	bdemount

bdeinfo_SOURCES = \
	byte_size_string.c byte_size_string.h \
	bdeinfo.c \
	bdetools_getopt.c bdetools_getopt.h \
	bdetools_i18n.h \
	bdetools_input.c bdetools_input.h \
	bdetools_libbde.h \
	bdetools_libcerror.h \
	bdetools_libclocale.h \
	bdetools_libcnotify.h \
	bdetools_libcsplit.h \
	bdetools_libfdatetime.h \
	bdetools_libfguid.h \
	bdetools_libuna.h \
	bdetools_output.c bdetools_output.h \
	bdetools_signal.c bdetools_signal.h \
	bdetools_unused.h \
	info_handle.c info_handle.h

bdeinfo_LDADD = \
	@LIBFGUID_LIBADD@ \
	@LIBFDATETIME_LIBADD@ \
	@LIBBFIO_LIBADD@ \
	@LIBCPATH_LIBADD@ \
	@LIBCFILE_LIBADD@ \
	@LIBUNA_LIBADD@ \
	@LIBCSPLIT_LIBADD@ \
	@LIBCDATA_LIBADD@ \
	@LIBCNOTIFY_LIBADD@ \
	@LIBCLOCALE_LIBADD@ \
	../libbde/libbde.la \
	@LIBCERROR_LIBADD@ \
	@LIBINTL@

bdemount_SOURCES = \
	bdemount.c \
	bdetools_getopt.c bdetools_getopt.h \
	bdetools_i18n.h \
	bdetools_input.c bdetools_input.h \
	bdetools_libbfio.h \
	bdetools_libbde.h \
	bdetools_libcdata.h \
	bdetools_libcerror.h \
	bdetools_libclocale.h \
	bdetools_libcnotify.h \
	bdetools_libcpath.h \
	bdetools_libcsplit.h \
	bdetools_output.c bdetools_output.h \
	bdetools_signal.c bdetools_signal.h \
	bdetools_unused.h \
	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

bdemount_LDADD = \
	@LIBFUSE_LIBADD@ \
	@LIBBFIO_LIBADD@ \
	@LIBCPATH_LIBADD@ \
	@LIBCFILE_LIBADD@ \
	@LIBUNA_LIBADD@ \
	@LIBCSPLIT_LIBADD@ \
	@LIBCDATA_LIBADD@ \
	@LIBCNOTIFY_LIBADD@ \
	@LIBCLOCALE_LIBADD@ \
	../libbde/libbde.la \
	@LIBCERROR_LIBADD@ \
	@LIBINTL@

DISTCLEANFILES = \
	Makefile \
	Makefile.in

splint-local:
	@echo "Running splint on bdeinfo ..."
	-splint -preproc -redef $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(bdeinfo_SOURCES)
	@echo "Running splint on bdemount ..."
	-splint -preproc -redef $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(bdemount_SOURCES)