File: Makefile.am

package info (click to toggle)
libsmdev 20190315-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 8,320 kB
  • sloc: ansic: 103,279; sh: 5,995; makefile: 822; python: 395; sed: 16
file content (49 lines) | stat: -rw-r--r-- 1,083 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
AM_CPPFLAGS = \
	-I$(top_srcdir)/include \
	-I$(top_srcdir)/common \
	@LIBCERROR_CPPFLAGS@ \
	@LIBCDATA_CPPFLAGS@ \
	@LIBCLOCALE_CPPFLAGS@ \
	@LIBCNOTIFY_CPPFLAGS@ \
	@LIBUNA_CPPFLAGS@ \
	@LIBCFILE_CPPFLAGS@ \
	@LIBSMDEV_DLL_IMPORT@

AM_LDFLAGS = @STATIC_LDFLAGS@

bin_PROGRAMS = \
	smdevinfo

smdevinfo_SOURCES = \
	byte_size_string.c byte_size_string.h \
	info_handle.c info_handle.h \
	smdevinfo.c \
	smdevtools_getopt.c smdevtools_getopt.h \
	smdevtools_i18n.h \
	smdevtools_libbfio.h \
	smdevtools_libcerror.h \
	smdevtools_libclocale.h \
	smdevtools_libcnotify.h \
	smdevtools_libsmdev.h \
	smdevtools_libuna.h \
	smdevtools_output.c smdevtools_output.h \
	smdevtools_signal.c smdevtools_signal.h \
	smdevtools_unused.h

smdevinfo_LDADD = \
	@LIBCNOTIFY_LIBADD@ \
	@LIBCLOCALE_LIBADD@ \
	../libsmdev/libsmdev.la \
	@LIBCERROR_LIBADD@ \
	@LIBINTL@

MAINTAINERCLEANFILES = \
	Makefile.in

distclean: clean
	/bin/rm -f Makefile

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