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
|
# 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 \
@LIBCERROR_CPPFLAGS@ \
@LIBCDATA_CPPFLAGS@ \
@LIBCLOCALE_CPPFLAGS@ \
@LIBCSPLIT_CPPFLAGS@ \
@LIBUNA_CPPFLAGS@ \
@LIBCFILE_CPPFLAGS@ \
@LIBCPATH_CPPFLAGS@ \
@LIBBFIO_CPPFLAGS@ \
@LIBFGUID_CPPFLAGS@ \
@LIBVHDI_DLL_IMPORT@
am_pyvhdi_la_rpath = -rpath $(pyexecdir3)
BUILT_SOURCES = \
pyvhdi.c pyvhdi.h \
pyvhdi_disk_types.c pyvhdi_disk_types.h \
pyvhdi_error.c pyvhdi_error.h \
pyvhdi_file.c pyvhdi_file.h \
pyvhdi_file_object_io_handle.c pyvhdi_file_object_io_handle.h \
pyvhdi_guid.c pyvhdi_guid.h \
pyvhdi_integer.c pyvhdi_integer.h \
pyvhdi_libbfio.h \
pyvhdi_libcerror.h \
pyvhdi_libclocale.h \
pyvhdi_libfguid.h \
pyvhdi_libvhdi.h \
pyvhdi_python.h \
pyvhdi_unused.h
pyexec_LTLIBRARIES = pyvhdi.la
nodist_pyvhdi_la_SOURCES = $(BUILT_SOURCES)
pyvhdi_la_LIBADD = \
@LIBCERROR_LIBADD@ \
../libvhdi/libvhdi.la \
@LIBCDATA_LIBADD@ \
@LIBCLOCALE_LIBADD@ \
@LIBCSPLIT_LIBADD@ \
@LIBUNA_LIBADD@ \
@LIBCFILE_LIBADD@ \
@LIBCPATH_LIBADD@ \
@LIBBFIO_LIBADD@ \
@LIBFGUID_LIBADD@
pyvhdi_la_CPPFLAGS = $(PYTHON3_CPPFLAGS)
pyvhdi_la_LDFLAGS = -module -avoid-version $(PYTHON3_LDFLAGS)
$(BUILT_SOURCES):
/bin/cp -f $(top_srcdir)/pyvhdi/$@ $@
endif
MAINTAINERCLEANFILES = \
Makefile.in
clean-local:
/bin/rm -f pyvhdi*.[ch]
distclean: clean
/bin/rm -f Makefile
|