From 1988a63b41a0e81f348d5df3394d41d3248d442b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 5 Feb 2007 22:34:56 +0000 Subject: Reorganized tree in preparation for beta release. Split simple (example) jack host and more useful one (with midi). Working Jack/LV2 midi in lv2_jack_host. Added lv2_list. git-svn-id: http://svn.drobilla.net/lad/slv2@279 a436a847-0d15-0410-975c-d299462d15a1 --- hosts/Makefile.am | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 hosts/Makefile.am (limited to 'hosts/Makefile.am') diff --git a/hosts/Makefile.am b/hosts/Makefile.am new file mode 100644 index 0000000..aa794c5 --- /dev/null +++ b/hosts/Makefile.am @@ -0,0 +1,18 @@ +AM_CFLAGS = -std=c99 -I$(top_srcdir) @RASQAL_CFLAGS@ + +if WITH_JACK + +bin_PROGRAMS = lv2_jack_host lv2_simple_jack_host + +lv2_jack_host_CFLAGS = @JACK_CFLAGS@ $(AM_CFLAGS) + +lv2_jack_host_DEPENDENCIES = ../src/libslv2.la +lv2_jack_host_LDADD = ../src/libslv2.la @JACK_LIBS@ @RASQAL_LIBS@ + +lv2_simple_jack_host_LDADD = ../src/libslv2.la @JACK_LIBS@ @RASQAL_LIBS@ + +lv2_jack_host_SOURCES = \ + lv2_jack_host.c + +endif + -- cgit v1.2.1