File: Makefile.am

package info (click to toggle)
libfsext 20240501-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 14,336 kB
  • sloc: ansic: 214,611; sh: 6,444; makefile: 1,528; python: 470; cpp: 427; sed: 16
file content (110 lines) | stat: -rw-r--r-- 2,557 bytes parent folder | download
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
105
106
107
108
109
110
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@ \
	@LIBFDATETIME_CPPFLAGS@ \
	@LIBFGUID_CPPFLAGS@ \
	@LIBHMAC_CPPFLAGS@ \
	@LIBCRYPTO_CPPFLAGS@ \
	@LIBFUSE_CPPFLAGS@ \
	@PTHREAD_CPPFLAGS@ \
	@LIBFSEXT_DLL_IMPORT@

AM_LDFLAGS = @STATIC_LDFLAGS@

bin_PROGRAMS = \
	fsextinfo \
	fsextmount

fsextinfo_SOURCES = \
	digest_hash.c digest_hash.h \
	fsextinfo.c \
	fsexttools_getopt.c fsexttools_getopt.h \
	fsexttools_i18n.h \
	fsexttools_libbfio.h \
	fsexttools_libcerror.h \
	fsexttools_libclocale.h \
	fsexttools_libcnotify.h \
	fsexttools_libfcache.h \
	fsexttools_libfdata.h \
	fsexttools_libfdatetime.h \
	fsexttools_libfguid.h \
	fsexttools_libfsext.h \
	fsexttools_libhmac.h \
	fsexttools_libuna.h \
	fsexttools_output.c fsexttools_output.h \
	fsexttools_signal.c fsexttools_signal.h \
	fsexttools_unused.h \
	info_handle.c info_handle.h

fsextinfo_LDADD = \
	@LIBHMAC_LIBADD@ \
	@LIBCRYPTO_LIBADD@ \
	@LIBDL_LIBADD@ \
	@LIBFGUID_LIBADD@ \
	@LIBFDATETIME_LIBADD@ \
	@LIBBFIO_LIBADD@ \
	@LIBCPATH_LIBADD@ \
	@LIBCFILE_LIBADD@ \
	@LIBUNA_LIBADD@ \
	@LIBCSPLIT_LIBADD@ \
	@LIBCDATA_LIBADD@ \
	@LIBCNOTIFY_LIBADD@ \
	@LIBCLOCALE_LIBADD@ \
	../libfsext/libfsext.la \
	@LIBCERROR_LIBADD@ \
	@LIBINTL@ \
	@PTHREAD_LIBADD@

fsextmount_SOURCES = \
	fsextmount.c \
	fsexttools_getopt.c fsexttools_getopt.h \
	fsexttools_i18n.h \
	fsexttools_libbfio.h \
	fsexttools_libcerror.h \
	fsexttools_libclocale.h \
	fsexttools_libcnotify.h \
	fsexttools_libcpath.h \
	fsexttools_libfsext.h \
	fsexttools_libuna.h \
	fsexttools_output.c fsexttools_output.h \
	fsexttools_signal.c fsexttools_signal.h \
	fsexttools_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

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

DISTCLEANFILES = \
	Makefile \
	Makefile.in

splint-local:
	@echo "Running splint on fsextinfo ..."
	-splint -preproc -redef $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(fsextinfo_SOURCES)