File: Makefile.am

package info (click to toggle)
libbde 20140731-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 12,448 kB
  • ctags: 5,338
  • sloc: ansic: 184,617; sh: 12,367; makefile: 1,252; python: 296; sed: 134
file content (67 lines) | stat: -rw-r--r-- 1,487 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
if HAVE_PYTHON
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@ \
	@LIBFGUID_CPPFLAGS@

pyexec_LTLIBRARIES = pybde.la

pybde_la_SOURCES = \
	pybde.c pybde.h \
	pybde_datetime.c pybde_datetime.h \
	pybde_encryption_methods.c pybde_encryption_methods.h \
	pybde_error.c pybde_error.h \
	pybde_file_object_io_handle.c pybde_file_object_io_handle.h \
	pybde_guid.c pybde_guid.h \
	pybde_integer.c pybde_integer.h \
	pybde_key_protection_types.c pybde_key_protection_types.h \
	pybde_key_protector.c pybde_key_protector.h \
	pybde_key_protectors.c pybde_key_protectors.h \
	pybde_libbde.h \
	pybde_libbfio.h \
	pybde_libcerror.h \
	pybde_libclocale.h \
	pybde_libcstring.h \
	pybde_libfguid.h \
	pybde_python.h \
	pybde_unused.h \
	pybde_volume.c pybde_volume.h

pybde_la_LIBADD = \
	@LIBCSTRING_LIBADD@ \
	@LIBCERROR_LIBADD@ \
	../libbde/libbde.la \
	@LIBCDATA_LIBADD@ \
	@LIBCLOCALE_LIBADD@ \
	@LIBCSPLIT_LIBADD@ \
	@LIBUNA_LIBADD@ \
	@LIBCFILE_LIBADD@ \
	@LIBCPATH_LIBADD@ \
	@LIBBFIO_LIBADD@ \
	@LIBFGUID_LIBADD@

pybde_la_CPPFLAGS = $(PYTHON_CPPFLAGS)
pybde_la_LDFLAGS  = -module -avoid-version $(PYTHON_LDFLAGS)

endif

EXTRA_DIST = \
	setup.py \
	setup.py.in

MAINTAINERCLEANFILES = \
	Makefile.in

distclean: clean
	/bin/rm -f setup.py
	/bin/rm -f Makefile