File: Makefile.am

package info (click to toggle)
libvmdk 20160119-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 11,600 kB
  • ctags: 4,882
  • sloc: ansic: 171,049; sh: 12,586; makefile: 1,220; python: 543; sed: 134
file content (73 lines) | stat: -rw-r--r-- 1,795 bytes parent folder | download
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
# Note that we cannot use: AUTOMAKE_OPTIONS = subdir-objects
# subdir-objects will compile the source files to a single version of Python.
# Since subdir-objects is being deprecated we copy the source files instead.
am__installdirs = "$(DESTDIR)$(pyexecdir3)"
pyexecdir = $(pyexecdir3)

if HAVE_PYTHON3
AM_CFLAGS = \
	-I$(top_srcdir)/include \
	-I$(top_srcdir)/common \
	@LIBCSTRING_CPPFLAGS@ \
	@LIBCERROR_CPPFLAGS@ \
	@LIBCDATA_CPPFLAGS@ \
	@LIBCLOCALE_CPPFLAGS@ \
	@LIBCSPLIT_CPPFLAGS@ \
	@LIBUNA_CPPFLAGS@ \
	@LIBCFILE_CPPFLAGS@ \
	@LIBCPATH_CPPFLAGS@ \
	@LIBBFIO_CPPFLAGS@

am_pyvmdk_la_rpath = -rpath $(pyexecdir3)

BUILT_SOURCES = \
	pyvmdk.c pyvmdk.h \
	pyvmdk_error.c pyvmdk_error.h \
	pyvmdk_extent_descriptor.c pyvmdk_extent_descriptor.h \
	pyvmdk_extent_descriptors.c pyvmdk_extent_descriptors.h \
	pyvmdk_file_object_io_handle.c pyvmdk_file_object_io_handle.h \
	pyvmdk_file_objects_io_pool.c pyvmdk_file_objects_io_pool.h \
	pyvmdk_handle.c pyvmdk_handle.h \
	pyvmdk_integer.c pyvmdk_integer.h \
	pyvmdk_libbfio.h \
	pyvmdk_libcerror.h \
	pyvmdk_libclocale.h \
	pyvmdk_libcstring.h \
	pyvmdk_libvmdk.h \
	pyvmdk_metadata.c pyvmdk_metadata.h \
	pyvmdk_python.h \
	pyvmdk_unused.h

pyexec_LTLIBRARIES = pyvmdk.la

nodist_pyvmdk_la_SOURCES = $(BUILT_SOURCES)

pyvmdk_la_LIBADD = \
	@LIBCSTRING_LIBADD@ \
	@LIBCERROR_LIBADD@ \
	../libvmdk/libvmdk.la \
	@LIBCDATA_LIBADD@ \
	@LIBCLOCALE_LIBADD@ \
	@LIBCSPLIT_LIBADD@ \
	@LIBUNA_LIBADD@ \
	@LIBCFILE_LIBADD@ \
	@LIBCPATH_LIBADD@ \
	@LIBBFIO_LIBADD@

pyvmdk_la_CPPFLAGS = $(PYTHON3_CPPFLAGS)
pyvmdk_la_LDFLAGS  = -module -avoid-version $(PYTHON3_LDFLAGS)

$(BUILT_SOURCES):
	/bin/cp -f $(top_srcdir)/pyvmdk/$@ $@

endif

MAINTAINERCLEANFILES = \
	Makefile.in

clean-local:
	/bin/rm -f pyvmdk*.[ch]

distclean: clean
	/bin/rm -f Makefile