File: Makefile.am

package info (click to toggle)
libguestfs 1%3A1.40.2-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 123,660 kB
  • sloc: ansic: 460,074; ml: 63,059; sh: 14,955; java: 9,512; makefile: 9,133; cs: 6,300; haskell: 5,652; python: 3,856; perl: 3,619; erlang: 2,435; xml: 1,683; ruby: 350; pascal: 255; lex: 135; yacc: 128; cpp: 10
file content (161 lines) | stat: -rw-r--r-- 3,580 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# libguestfs Python bindings
# Copyright (C) 2009-2019 Red Hat Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

include $(top_srcdir)/subdir-rules.mk

generator_built = \
	actions-0.c \
	actions-1.c \
	actions-2.c \
	actions-3.c \
	actions-4.c \
	actions-5.c \
	actions-6.c \
	actions.h \
	module.c \
	structs.c \
	guestfs.py \
	bindtests.py

EXTRA_DIST = \
	$(generator_built) \
	MANIFEST.in \
	README.txt \
	setup.py.in \
	run-bindtests \
	run-python-tests \
	t/README \
	t/*.py

if HAVE_PYTHON

# Build the library.

pythondir = $(PYTHON_INSTALLDIR)

python_DATA = guestfs.py

python_LTLIBRARIES = libguestfsmod.la

libguestfsmod_la_SOURCES = \
	actions-0.c \
	actions-1.c \
	actions-2.c \
	actions-3.c \
	actions-4.c \
	actions-5.c \
	actions-6.c \
	actions.h \
	handle.c \
	module.c \
	structs.c

libguestfsmod_la_CPPFLAGS = \
	-DGUESTFS_PRIVATE=1 \
	$(PYTHON_CFLAGS) \
	-I$(top_srcdir)/common/utils -I$(top_builddir)/common/utils \
	-I$(top_srcdir)/lib -I$(top_builddir)/lib

libguestfsmod_la_CFLAGS = \
	$(WARN_CFLAGS) $(WERROR_CFLAGS)

libguestfsmod_la_LIBADD = \
	$(top_builddir)/common/utils/libutils_la-utils.lo \
	$(top_builddir)/lib/libguestfs.la

libguestfsmod_la_LDFLAGS = -avoid-version -shared -module -shrext $(PYTHON_EXT_SUFFIX)

# Currently we don't use setup.py to build the Python library for
# distribution with libguestfs (although maybe we should in future).
# For now, these are some rules which use setup.py to make a source
# distribution for pip, and a few other bits.

sdist: setup.py stamp-extra-files
	$(PYTHON) setup.py $@

setup-build: setup.py stamp-extra-files
	$(PYTHON) setup.py build

setup-install: setup.py stamp-extra-files
	$(PYTHON) setup.py install $(SETUP_INSTALL_ARGS)

# Python's crappy MANIFEST file cannot graft single files, so we have
# to hard-link any extra files we need into the local directory.
stamp-extra-files: \
	  c-ctype.h \
	  cleanups.c \
	  cleanups.h \
	  config.h \
	  guestfs-internal-all.h \
	  guestfs-utils.h \
	  ignore-value.h \
	  utils.c
	touch $@

config.h:
	ln ../config.h $@

c-ctype.h:
	ln $(top_srcdir)/gnulib/lib/c-ctype.h $@

cleanups.c:
	ln $(top_srcdir)/common/utils/cleanups.c $@

cleanups.h:
	ln $(top_srcdir)/common/utils/cleanups.h $@

ignore-value.h:
	ln $(top_srcdir)/gnulib/lib/ignore-value.h $@

guestfs-internal-all.h:
	ln $(top_srcdir)/lib/guestfs-internal-all.h $@

guestfs-utils.h:
	ln $(top_srcdir)/common/utils/guestfs-utils.h $@

utils.c:
	ln $(top_srcdir)/common/utils/utils.c $@

# Tests.

TESTS_ENVIRONMENT = $(top_builddir)/run --test

TESTS = run-bindtests

if ENABLE_APPLIANCE
TESTS += run-python-tests
endif ENABLE_APPLIANCE

endif HAVE_PYTHON

# Extra clean.
CLEANFILES += \
	*.pyc \
	examples/*~ examples/*.pyc \
	t/*~ t/*.pyc \
	c-ctype.h \
	config.h \
	cleanups.c \
	cleanups.h \
	guestfs-internal-all.h \
	guestfs-utils.h \
	ignore-value.h \
	stamp-extra-files \
	utils.c

clean-local:
	rm -rf build dist