File: Makefile.am

package info (click to toggle)
libvslvm 20240504-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,076 kB
  • sloc: ansic: 194,036; sh: 6,444; makefile: 1,253; python: 344; cpp: 264; sed: 16
file content (93 lines) | stat: -rw-r--r-- 2,172 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
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@ \
	@LIBFUSE_CPPFLAGS@ \
	@LIBVSLVM_DLL_IMPORT@

AM_LDFLAGS = @STATIC_LDFLAGS@

bin_PROGRAMS = \
	vslvminfo \
	vslvmmount

vslvminfo_SOURCES = \
	byte_size_string.c byte_size_string.h \
	info_handle.c info_handle.h \
	vslvminfo.c \
	vslvmtools_getopt.c vslvmtools_getopt.h \
	vslvmtools_i18n.h \
	vslvmtools_libbfio.h \
	vslvmtools_libcerror.h \
	vslvmtools_libclocale.h \
	vslvmtools_libcnotify.h \
	vslvmtools_libvslvm.h \
	vslvmtools_libuna.h \
	vslvmtools_output.c vslvmtools_output.h \
	vslvmtools_signal.c vslvmtools_signal.h \
	vslvmtools_unused.h

vslvminfo_LDADD = \
	@LIBBFIO_LIBADD@ \
	@LIBCPATH_LIBADD@ \
	@LIBCFILE_LIBADD@ \
	@LIBUNA_LIBADD@ \
	@LIBCSPLIT_LIBADD@ \
	@LIBCDATA_LIBADD@ \
	@LIBCNOTIFY_LIBADD@ \
	@LIBCLOCALE_LIBADD@ \
	../libvslvm/libvslvm.la \
	@LIBCERROR_LIBADD@ \
	@LIBINTL@

vslvmmount_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 \
	vslvmmount.c \
	vslvmtools_getopt.c vslvmtools_getopt.h \
	vslvmtools_i18n.h \
	vslvmtools_libbfio.h \
	vslvmtools_libcdata.h \
	vslvmtools_libcerror.h \
	vslvmtools_libclocale.h \
	vslvmtools_libcnotify.h \
	vslvmtools_libcpath.h \
	vslvmtools_libvslvm.h \
	vslvmtools_libuna.h \
	vslvmtools_output.c vslvmtools_output.h \
	vslvmtools_signal.c vslvmtools_signal.h \
	vslvmtools_unused.h

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

DISTCLEANFILES = \
	Makefile \
	Makefile.in

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