File: Makefile.am

package info (click to toggle)
libsigscan 20170124-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 9,308 kB
  • ctags: 3,722
  • sloc: ansic: 119,076; sh: 5,655; makefile: 1,081; python: 319; sed: 16
file content (55 lines) | stat: -rw-r--r-- 1,228 bytes parent folder | download | duplicates (3)
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
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@ \
	@LIBSIGSCAN_DLL_IMPORT@

AM_LDFLAGS = @STATIC_LDFLAGS@

bin_PROGRAMS = \
	sigscan

sigscan_SOURCES = \
	scan_handle.c scan_handle.h \
	sigscan.c \
	sigscantools_getopt.c sigscantools_getopt.h \
	sigscantools_i18n.h \
	sigscantools_libbfio.h \
	sigscantools_libcdata.h \
	sigscantools_libcerror.h \
	sigscantools_libcfile.h \
	sigscantools_libclocale.h \
	sigscantools_libcnotify.h \
	sigscantools_libsigscan.h \
	sigscantools_libuna.h \
	sigscantools_output.c sigscantools_output.h \
	sigscantools_signal.c sigscantools_signal.h \
	sigscantools_unused.h

sigscan_LDADD = \
	@LIBCFILE_LIBADD@ \
	@LIBUNA_LIBADD@ \
	@LIBCNOTIFY_LIBADD@ \
	@LIBCLOCALE_LIBADD@ \
	../libsigscan/libsigscan.la \
	@LIBCERROR_LIBADD@ \
	@LIBINTL@

MAINTAINERCLEANFILES = \
	Makefile.in

distclean: clean
	/bin/rm -f Makefile

splint:
	@echo "Running splint on sigscan..."
	-splint -preproc -redef $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(sigscan_SOURCES)