File: Makefile.am

package info (click to toggle)
libewf 20140608-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 18,424 kB
  • ctags: 8,253
  • sloc: ansic: 297,847; sh: 13,697; cpp: 4,381; makefile: 1,972; yacc: 1,094; lex: 390; python: 352; sed: 134
file content (85 lines) | stat: -rw-r--r-- 2,094 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
AM_LFLAGS = -Cf
AM_YFLAGS = -d -v

if HAVE_LOCAL_LIBODRAW
AM_CPPFLAGS = \
	-I$(top_srcdir)/include \
	-I$(top_srcdir)/common \
	@LIBCSTRING_CPPFLAGS@ \
	@LIBCERROR_CPPFLAGS@ \
	@LIBCTHREADS_CPPFLAGS@ \
	@LIBCDATA_CPPFLAGS@ \
	@LIBCLOCALE_CPPFLAGS@ \
	@LIBCNOTIFY_CPPFLAGS@ \
	@LIBCSPLIT_CPPFLAGS@ \
	@LIBUNA_CPPFLAGS@ \
	@LIBCFILE_CPPFLAGS@ \
	@LIBCPATH_CPPFLAGS@ \
	@LIBBFIO_CPPFLAGS@ \
	@PTHREAD_CPPFLAGS@

BUILT_SOURCES = libodraw_cue_parser.h

noinst_LTLIBRARIES = libodraw.la

libodraw_la_SOURCES = \
	libodraw_codepage.h \
	libodraw_cue_parser.y \
	libodraw_cue_scanner.l \
	libodraw_data_file.c libodraw_data_file.h \
	libodraw_data_file_descriptor.c libodraw_data_file_descriptor.h \
	libodraw_debug.c libodraw_debug.h \
	libodraw_definitions.h \
	libodraw_error.c libodraw_error.h \
	libodraw_extern.h \
	libodraw_handle.c libodraw_handle.h \
	libodraw_io_handle.c libodraw_io_handle.h \
	libodraw_metadata.c libodraw_metadata.h \
	libodraw_libbfio.h \
	libodraw_libcdata.h \
	libodraw_libcerror.h \
	libodraw_libclocale.h \
	libodraw_libcnotify.h \
	libodraw_libcpath.h \
	libodraw_libcstring.h \
	libodraw_libuna.h \
	libodraw_notify.c libodraw_notify.h \
	libodraw_sector_range.c libodraw_sector_range.h \
	libodraw_support.c libodraw_support.h \
	libodraw_track_value.c libodraw_track_value.h \
	libodraw_types.h \
	libodraw_unused.h

libodraw_la_LIBADD = \
	@LIBCSTRING_LIBADD@ \
	@LIBCERROR_LIBADD@ \
	@LIBCTHREADS_LIBADD@ \
	@LIBCDATA_LIBADD@ \
	@LIBCLOCALE_LIBADD@ \
	@LIBCNOTIFY_LIBADD@ \
	@LIBCSPLIT_LIBADD@ \
	@LIBUNA_LIBADD@ \
	@LIBCFILE_LIBADD@ \
	@LIBCPATH_LIBADD@ \
	@LIBBFIO_LIBADD@ \
	@PTHREAD_LIBADD@
endif

EXTRA_DIST = \
	libodraw_cue_parser.c libodraw_cue_parser.h \
	libodraw_cue_scanner.c

MAINTAINERCLEANFILES = \
	Makefile.in

distclean: clean
	/bin/rm -f libodraw_cue_parser.c
	/bin/rm -f libodraw_cue_parser.h
	/bin/rm -f libodraw_cue_parser.output
	/bin/rm -f libodraw_cue_scanner.c
	/bin/rm -f Makefile

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