1 # Calf DSP library - example modules
3 INCLUDES = -I$(top_srcdir) -I$(srcdir)
7 ladspadir = $(with_ladspa_dir)
8 lv2dir = $(with_lv2_dir)
12 noinst_PROGRAMS = calfbenchmark
13 noinst_LTLIBRARIES = calf.la libcalfstatic.la
15 dssidir = $(with_dssi_dir)/calf
16 dssi_PROGRAMS = calf_gtk
19 noinst_LTLIBRARIES += calflv2gui.la
22 AM_CXXFLAGS = -ffast-math -finline-limit=80 $(FLUIDSYNTH_DEPS_CFLAGS)
25 AM_CXXFLAGS += $(GUI_DEPS_CFLAGS)
28 AM_CXXFLAGS += $(JACK_DEPS_CFLAGS)
29 noinst_LTLIBRARIES += libcalfgui.la
30 bin_PROGRAMS += calfjackhost
31 calfjackhost_SOURCES = jackhost.cpp
32 calfjackhost_LDADD = libcalfgui.la libcalfstatic.la $(JACK_DEPS_LIBS) $(GUI_DEPS_LIBS) $(FLUIDSYNTH_DEPS_LIBS)
34 AM_CXXFLAGS += $(LASH_DEPS_CFLAGS)
35 calfjackhost_LDADD += $(LASH_DEPS_LIBS)
39 AM_CXXFLAGS += $(GLIB_DEPS_CFLAGS)
40 noinst_PROGRAMS += calfmakerdf
41 calfmakerdf_SOURCES = makerdf.cpp
42 calfmakerdf_LDADD = libcalfstatic.la
44 calfbenchmark_SOURCES = benchmark.cpp
45 calfbenchmark_LDADD = $(GLIB_DEPS_LIBS) libcalfstatic.la
48 calf_gtk_SOURCES = dssigui.cpp
49 calf_gtk_LDADD = libcalfstatic.la libcalfgui.la $(GLIB_DEPS_LIBS) $(GUI_DEPS_LIBS)
50 calfbenchmark_CXXFLAGS = $(AM_CXXFLAGS) -DTEST_OSC
51 calfbenchmark_LDADD += libcalfgui.la
54 calf_la_SOURCES = modules.cpp modules_dsp.cpp modules_small.cpp fluidsynth.cpp giface.cpp monosynth.cpp organ.cpp osctl.cpp osctlnet.cpp plugin.cpp preset.cpp synth.cpp utils.cpp wavetable.cpp
55 calf_la_LIBADD ?= $(FLUIDSYNTH_DEPS_LIBS)
57 calf_la_LDFLAGS = -rpath $(ladspadir) -avoid-version -module -lexpat -disable-static $(FLUIDSYNTH_DEPS_LIBS)
59 calf_la_LDFLAGS = -rpath $(ladspadir) -avoid-version -module -lexpat -disable-static -export-symbols-regex "(ladspa_|lv2_|dssi_)descriptor" $(FLUIDSYNTH_DEPS_LIBS)
63 calflv2gui_la_SOURCES = gui.cpp ctl_curve.cpp ctl_keyboard.cpp ctl_led.cpp custom_ctl.cpp modules.cpp giface.cpp preset.cpp synth.cpp lv2gui.cpp main_win.cpp osctl.cpp osctlnet.cpp utils.cpp
65 calflv2gui_la_LDFLAGS = -rpath $(lv2dir) -avoid-version -module -lexpat $(GUI_DEPS_LIBS) -disable-static
67 calflv2gui_la_LDFLAGS = -rpath $(lv2dir) -avoid-version -module -lexpat -export-symbols-regex "lv2_gui_descriptor" $(GUI_DEPS_LIBS) -disable-static
71 libcalfstatic_la_SOURCES = modules.cpp modules_dsp.cpp modules_small.cpp fluidsynth.cpp giface.cpp monosynth.cpp organ.cpp osctl.cpp osctlnet.cpp preset.cpp synth.cpp utils.cpp wavetable.cpp
72 libcalfstatic_la_LDFLAGS = -static -lexpat -disable-shared $(FLUIDSYNTH_DEPS_LIBS)
75 libcalfgui_la_SOURCES = gui.cpp ctl_curve.cpp ctl_keyboard.cpp ctl_led.cpp preset_gui.cpp custom_ctl.cpp osctl.cpp osctlnet.cpp osctlserv.cpp main_win.cpp utils.cpp
76 libcalfgui_la_LDFLAGS = -static -disable-shared
80 $(RM) -f calfjackhost *~
83 install -d -m 755 $(DESTDIR)$(pkgdatadir)
84 install -c -m 644 $(top_srcdir)/presets.xml $(DESTDIR)$(pkgdatadir)
85 install -c -m 644 $(top_srcdir)/knob.png $(DESTDIR)$(pkgdatadir)
86 $(top_builddir)/src/calfmakerdf -m gui -p $(DESTDIR)$(pkgdatadir)
87 install -c -m 644 $(top_srcdir)/gui/gui-*.xml $(DESTDIR)$(pkgdatadir)
89 install -c -m 644 $(top_srcdir)/calf.glade $(DESTDIR)$(pkgdatadir)
92 install -d -m 755 $(DESTDIR)$(with_ladspa_dir)
93 install -d -m 755 $(DESTDIR)$(with_ladspa_rdf_dir)
94 install -c -m 755 $(top_builddir)/src/.libs/calf.so $(DESTDIR)$(with_ladspa_dir)/calf.so
95 $(top_builddir)/src/calfmakerdf > $(DESTDIR)$(with_ladspa_rdf_dir)/calf.rdf
98 install -d -m 755 $(DESTDIR)$(with_dssi_dir)
99 install -d -m 755 $(DESTDIR)$(with_dssi_dir)/calf
100 install -c -m 755 $(top_builddir)/src/.libs/calf.so $(DESTDIR)$(with_dssi_dir)/calf.so
103 install -d -m 755 $(DESTDIR)$(with_lv2_dir)/calf.lv2
104 install -c -m 755 $(top_builddir)/src/.libs/calf.so $(DESTDIR)$(with_lv2_dir)/calf.lv2/calf.so
106 install -c -m 755 $(top_builddir)/src/.libs/calflv2gui.so $(DESTDIR)$(with_lv2_dir)/calf.lv2/calflv2gui.so
108 rm -f $(DESTDIR)$(with_lv2_dir)/calf.lv2/*.ttl
109 $(top_builddir)/src/calfmakerdf -m ttl -p $(DESTDIR)$(with_lv2_dir)/calf.lv2/
112 #remove calf.so, calf.rdf and - if empty - ladspa dir in usr/share
116 rm -f $(DESTDIR)$(with_lv2_dir)/calf.lv2/calflv2gui.so
118 rm -f $(DESTDIR)$(with_lv2_dir)/calf.lv2/calf.so
119 rm -f $(DESTDIR)$(with_lv2_dir)/calf.lv2/*.ttl
120 rmdir -p $(DESTDIR)$(with_lv2_dir)/calf.lv2 || true
123 rm -f $(DESTDIR)$(pkgdatadir)/calf.glade
125 rm -f $(DESTDIR)$(pkgdatadir)/gui-*.xml
126 rm -f $(DESTDIR)$(pkgdatadir)/presets.xml
127 rm -f $(DESTDIR)$(pkgdatadir)/knob.png
128 rmdir $(DESTDIR)$(pkgdatadir) || true
130 $(RM) -f $(DESTDIR)$(with_ladspa_dir)/calf.so
131 $(RM) -f $(DESTDIR)$(with_ladspa_rdf_dir)/calf.rdf
132 rmdir -p $(DESTDIR)$(with_ladspa_rdf_dir) || true
135 $(RM) -f $(DESTDIR)$(with_dssi_dir)/calf.so
137 $(RM) -f $(DESTDIR)$(with_dssi_dir)/calf/calf_gtk
139 rmdir -p $(DESTDIR)$(with_dssi_dir)/calf || true
143 # $(INSTALL) calfjackhost $(bindir)