]> git.0d.be Git - jack_mixer.git/blob - Makefile.am
Set version to 14 in preparation for next release
[jack_mixer.git] / Makefile.am
1 #
2 # This file is part of jack_mixer
3 #
4 # Copyright (C) 2007 Nedko Arnaudov <nedko@arnaudov.name>
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; version 2 of the License
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 #
19
20 AM_CFLAGS = $(JACKMIXER_CFLAGS) -D_GNU_SOURCE -Wall -fno-strict-aliasing
21 if DEV_VERSION
22 AM_CFLAGS +=  -Werror
23 endif
24
25 SUBDIRS = data
26
27 AM_CPPFLAGS = $(PYTHON_INCLUDES)
28
29 jack_mixerdir = $(pkgdatadir)
30 pkgpyexecdir = $(pythondir)
31 pkgpyexec_LTLIBRARIES = jack_mixer_c.la
32
33 jack_mixer_c_la_LDFLAGS = -module -avoid-version
34
35 jack_mixer_c_la_LIBADD = $(JACKMIXER_LIBS)
36
37 jack_mixer_c_la_SOURCES = \
38         jack_mixer.c jack_mixer.h list.h log.h log.c scale.c scale.h jack_compat.h \
39         jack_mixer_c.c
40
41 dist_jack_mixer_DATA = abspeak.py channel.py gui.py meter.py scale.py serialization.py serialization_xml.py slider.py preferences.py nsmclient.py
42
43 CLEANFILES = *.pyc
44 EXTRA_DIST = test.py COPYING jack_mixer.py NEWS
45
46 bin_SCRIPTS = $(srcdir)/jack_mixer.py
47
48 bin_PROGRAMS = jack_mix_box
49
50 jack_mixer_c.so: jack_mixer_c.la
51         ln -nfs .libs/jack_mixer_c.so
52
53 jack_mix_box_SOURCES = jack_mix_box.c jack_mixer.c scale.c log.c
54
55 jack_mix_box_CFLAGS = $(JACKMIXER_CFLAGS)
56
57 jack_mix_box_LDADD = $(JACKMIXER_LIBS) -lm
58
59 test: _jack_mixer_c.so
60         @./test.py
61
62 install-exec-hook:
63         ln -vfs jack_mixer.py $(DESTDIR)$(bindir)/jack_mixer
64
65 pacoinstall:
66         test `whoami` == root # test for root
67         -paco -rvB jack_mixer
68         -paco -lE `pwd` -E /etc -p jack_mixer-`svnversion` "make install"
69         -paco -i jack_mixer
70
71