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
|
# 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@ \
@LIBUNA_CPPFLAGS@ \
@LIBCFILE_CPPFLAGS@ \
@LIBCPATH_CPPFLAGS@ \
@LIBBFIO_CPPFLAGS@
am_pysigscan_la_rpath = -rpath $(pyexecdir3)
BUILT_SOURCES = \
pysigscan.c pysigscan.h \
pysigscan_error.c pysigscan_error.h \
pysigscan_file_object_io_handle.c pysigscan_file_object_io_handle.h \
pysigscan_integer.c pysigscan_integer.h \
pysigscan_libbfio.h \
pysigscan_libcerror.h \
pysigscan_libclocale.h \
pysigscan_libsigscan.h \
pysigscan_python.h \
pysigscan_scan_result.c pysigscan_scan_result.h \
pysigscan_scan_results.c pysigscan_scan_results.h \
pysigscan_scan_state.c pysigscan_scan_state.h \
pysigscan_scanner.c pysigscan_scanner.h \
pysigscan_signature_flags.c pysigscan_signature_flags.h \
pysigscan_unused.h
pyexec_LTLIBRARIES = pysigscan.la
nodist_pysigscan_la_SOURCES = $(BUILT_SOURCES)
pysigscan_la_LIBADD = \
@LIBCERROR_LIBADD@ \
../libsigscan/libsigscan.la \
@LIBCDATA_LIBADD@ \
@LIBCLOCALE_LIBADD@ \
@LIBCFILE_LIBADD@ \
@LIBCPATH_LIBADD@ \
@LIBBFIO_LIBADD@
pysigscan_la_CPPFLAGS = $(PYTHON3_CPPFLAGS)
pysigscan_la_LDFLAGS = -module -avoid-version $(PYTHON3_LDFLAGS)
$(BUILT_SOURCES):
/bin/cp -f $(top_srcdir)/pysigscan/$@ $@
endif
MAINTAINERCLEANFILES = \
Makefile.in
clean-local:
/bin/rm -f pysigscan*.[ch]
distclean: clean
/bin/rm -f Makefile
|