File: Makefile.am

package info (click to toggle)
libmsiecf 20170116-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 11,468 kB
  • ctags: 4,768
  • sloc: ansic: 159,493; sh: 5,662; makefile: 1,287; python: 311; sed: 16
file content (82 lines) | stat: -rw-r--r-- 2,003 bytes parent folder | download | duplicates (4)
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
AM_CPPFLAGS = \
	-I$(top_srcdir)/include \
	-I$(top_srcdir)/common \
	@LIBCERROR_CPPFLAGS@ \
	@LIBCDATA_CPPFLAGS@ \
	@LIBCLOCALE_CPPFLAGS@ \
	@LIBCNOTIFY_CPPFLAGS@ \
	@LIBUNA_CPPFLAGS@ \
	@LIBCFILE_CPPFLAGS@ \
	@LIBCPATH_CPPFLAGS@ \
	@LIBBFIO_CPPFLAGS@ \
	@LIBFDATETIME_CPPFLAGS@ \
	@LIBMSIECF_DLL_IMPORT@

AM_LDFLAGS = @STATIC_LDFLAGS@

bin_PROGRAMS = \
	msiecfexport \
	msiecfinfo

msiecfexport_SOURCES = \
	export_handle.c export_handle.h \
	log_handle.c log_handle.h \
	msiecfexport.c \
	msiecftools_getopt.c msiecftools_getopt.h \
	msiecftools_i18n.h \
	msiecftools_libbfio.h \
	msiecftools_libcerror.h \
	msiecftools_libclocale.h \
	msiecftools_libcnotify.h \
	msiecftools_libfdatetime.h \
	msiecftools_libmsiecf.h \
	msiecftools_libuna.h \
	msiecftools_output.c msiecftools_output.h \
	msiecftools_signal.c msiecftools_signal.h \
	msiecftools_unused.h

msiecfexport_LDADD = \
	@LIBFDATETIME_LIBADD@ \
	@LIBUNA_LIBADD@ \
	../libmsiecf/libmsiecf.la \
	@LIBCNOTIFY_LIBADD@ \
	@LIBCLOCALE_LIBADD@ \
	@LIBCERROR_LIBADD@ \
	@LIBINTL@

msiecfinfo_SOURCES = \
	info_handle.c info_handle.h \
	msiecfinfo.c \
	msiecftools_getopt.c msiecftools_getopt.h \
	msiecftools_i18n.h \
	msiecftools_libbfio.h \
	msiecftools_libcerror.h \
	msiecftools_libclocale.h \
	msiecftools_libcnotify.h \
	msiecftools_libfdatetime.h \
	msiecftools_libmsiecf.h \
	msiecftools_libuna.h \
	msiecftools_output.c msiecftools_output.h \
	msiecftools_signal.c msiecftools_signal.h \
	msiecftools_unused.h

msiecfinfo_LDADD = \
	@LIBUNA_LIBADD@ \
	../libmsiecf/libmsiecf.la \
	@LIBCNOTIFY_LIBADD@ \
	@LIBCLOCALE_LIBADD@ \
	@LIBCERROR_LIBADD@ \
	@LIBINTL@

MAINTAINERCLEANFILES = \
	Makefile.in

distclean: clean
	/bin/rm -f Makefile

splint:
	@echo "Running splint on msiecfexport ..."
	-splint -preproc -redef $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(msiecfexport_SOURCES)
	@echo "Running splint on msiecfinfo ..."
	-splint -preproc -redef $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(msiecfinfo_SOURCES)