File: Makefile.am

package info (click to toggle)
libesedb 20170121-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 14,708 kB
  • ctags: 6,330
  • sloc: ansic: 232,159; sh: 5,662; makefile: 1,590; python: 295; sed: 16
file content (109 lines) | stat: -rw-r--r-- 2,655 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
105
106
107
108
109
AM_CPPFLAGS = \
	-I$(top_srcdir)/include \
	-I$(top_srcdir)/common \
	@LIBCERROR_CPPFLAGS@ \
	@LIBCDATA_CPPFLAGS@ \
	@LIBCLOCALE_CPPFLAGS@ \
	@LIBCNOTIFY_CPPFLAGS@ \
	@LIBCSPLIT_CPPFLAGS@ \
	@LIBUNA_CPPFLAGS@ \
	@LIBCFILE_CPPFLAGS@ \
	@LIBCPATH_CPPFLAGS@ \
	@LIBBFIO_CPPFLAGS@ \
	@LIBFDATETIME_CPPFLAGS@ \
	@LIBFGUID_CPPFLAGS@ \
	@LIBFVALUE_CPPFLAGS@ \
	@LIBFWNT_CPPFLAGS@ \
	@LIBFMAPI_CPPFLAGS@ \
	@LIBESEDB_DLL_IMPORT@

AM_LDFLAGS = @STATIC_LDFLAGS@

bin_PROGRAMS = \
	esedbexport \
	esedbinfo

esedbexport_SOURCES = \
	esedbexport.c \
	esedbtools_getopt.c esedbtools_getopt.h \
	esedbtools_i18n.h \
	esedbtools_libbfio.h \
	esedbtools_libcerror.h \
	esedbtools_libclocale.h \
	esedbtools_libcfile.h \
	esedbtools_libcnotify.h \
	esedbtools_libcpath.h \
	esedbtools_libesedb.h \
	esedbtools_libfdatetime.h \
	esedbtools_libfguid.h \
	esedbtools_libfmapi.h \
	esedbtools_libfvalue.h \
	esedbtools_libfwnt.h \
	esedbtools_libuna.h \
	esedbtools_output.c esedbtools_output.h \
	esedbtools_signal.c esedbtools_signal.h \
	esedbtools_system_string.c esedbtools_system_string.h \
	esedbtools_unused.h \
	exchange.c exchange.h \
	export.c export.h \
	export_handle.c export_handle.h \
	log_handle.c log_handle.h \
	webcache.c webcache.h \
	windows_search.c windows_search.h \
	windows_security.c windows_security.h

esedbexport_LDADD = \
	@LIBFMAPI_LIBADD@ \
	@LIBFVALUE_LIBADD@ \
	@LIBFWNT_LIBADD@ \
	@LIBFGUID_LIBADD@ \
	@LIBFDATETIME_LIBADD@ \
	@LIBCFILE_LIBADD@ \
	@LIBCPATH_LIBADD@ \
	@LIBUNA_LIBADD@ \
	@LIBCSPLIT_LIBADD@ \
	@LIBCNOTIFY_LIBADD@ \
	@LIBCLOCALE_LIBADD@ \
	../libesedb/libesedb.la \
	@LIBCERROR_LIBADD@ \
	@LIBINTL@

esedbinfo_SOURCES = \
	esedbinfo.c \
	esedbtools_getopt.c esedbtools_getopt.h \
	esedbtools_i18n.h \
	esedbtools_libbfio.h \
	esedbtools_libcerror.h \
	esedbtools_libclocale.h \
	esedbtools_libcnotify.h \
	esedbtools_libesedb.h \
	esedbtools_libfdatetime.h \
	esedbtools_libfguid.h \
	esedbtools_libfmapi.h \
	esedbtools_libfvalue.h \
	esedbtools_libfwnt.h \
	esedbtools_libuna.h \
	esedbtools_output.c esedbtools_output.h \
	esedbtools_signal.c esedbtools_signal.h \
	esedbtools_unused.h \
	info_handle.c info_handle.h

esedbinfo_LDADD = \
	@LIBCNOTIFY_LIBADD@ \
	@LIBCLOCALE_LIBADD@ \
	../libesedb/libesedb.la \
	@LIBCERROR_LIBADD@ \
	@LIBINTL@

MAINTAINERCLEANFILES = \
	Makefile.in

distclean: clean
	/bin/rm -f Makefile

splint:
	@echo "Running splint on esedbexport ..."
	-splint -preproc -redef $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(esedbexport_SOURCES)
	@echo "Running splint on esedbinfo ..."
	-splint -preproc -redef $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(esedbinfo_SOURCES)