blob: 1eea024577d4adbd17643857161aa44ce5dc1956 (
plain)
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
|
===================================================================
RCS file: /home/cvspsrv/cvsroot/sound/ecasound/pyecasound/Makefile.am,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- pyecasound/Makefile.am 2003/04/02 20:13:52 1.28
+++ pyecasound/Makefile.am 2003/05/30 01:50:40 1.29
@@ -11,7 +11,7 @@
ecasoundc_libs = -L$(top_builddir)/libecasoundc/.libs -lecasoundc
endif
-if ECA_AM_HAVE_PYTHON
+if ECA_AM_PYECASOUND_INSTALL
pyecasound_install_list1 = $(srcdir)/eci.py \
$(srcdir)/pyeca.py \
$(srcdir)/ecacontrol.py
@@ -19,7 +19,7 @@
$(DESTDIR)$(ECA_S_PYTHON_DLMODULES)/pyeca.py \
$(DESTDIR)$(ECA_S_PYTHON_DLMODULES)/ecacontrol.py
endif
-if ECA_AM_COMPILE_PYECASOUND
+if ECA_AM_PYECASOUND_CEXT
pyecasound_install_list2 = pyecasound.so
pyecasound_uninstall_list2 = $(DESTDIR)$(ECA_S_PYTHON_DLMODULES)/pyecasound.so
endif
@@ -39,14 +39,14 @@
# source files
# ----------------------------------------------------------------------
-if ECA_AM_COMPILE_PYECASOUND
+if ECA_AM_PYECASOUND_CEXT
noinst_LTLIBRARIES = libpyecasound.la
endif
libpyecasound_la_SOURCES = pyecasound.c
libpyecasound_la_LDFLAGS = -avoid-version -export-dynamic
-if ECA_AM_COMPILE_PYECASOUND
+if ECA_AM_PYECASOUND_CEXT
all: pyecasound.so
pyecasound.so: pyecasound.lo
@@ -57,11 +57,11 @@
# hooks
# ----------------------------------------------------------------------
-if ECA_AM_COMPILE_PYECASOUND
+if ECA_AM_PYECASOUND_CEXT
CLEANFILES=pyecasound.so
endif
-if ECA_AM_HAVE_PYTHON
+if ECA_AM_PYECASOUND_INSTALL
install-exec-hook: $(pyecasound_install_list1) $(pyecasound_install_list2)
$(INSTALL) -d $(DESTDIR)$(ECA_S_PYTHON_DLMODULES)
$(INSTALL) $(pyecasound_install_list1) $(pyecasound_install_list2) $(DESTDIR)$(ECA_S_PYTHON_DLMODULES)
@@ -69,7 +69,7 @@
install-exec-hook:
endif
-if ECA_AM_HAVE_PYTHON
+if ECA_AM_PYECASOUND_INSTALL
uninstall-local:
rm -f $(pyecasound_uninstall_list1) $(pyecasound_uninstall_list2)
rmdir --ignore-fail-on-non-empty $(DESTDIR)$(ECA_S_PYTHON_DLMODULES)
|