From 7fd4168fe8581e46f4ee35cc182db6220b6eed04 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 6 Jun 2006 20:20:33 +0000 Subject: Moved libslv2 into it's own subdirectory git-svn-id: http://svn.drobilla.net/lad/libslv2@4 a436a847-0d15-0410-975c-d299462d15a1 --- examples/hosts/Makefile.am | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 examples/hosts/Makefile.am (limited to 'examples/hosts/Makefile.am') diff --git a/examples/hosts/Makefile.am b/examples/hosts/Makefile.am new file mode 100644 index 0000000..340c962 --- /dev/null +++ b/examples/hosts/Makefile.am @@ -0,0 +1,24 @@ +AM_CFLAGS = -std=c99 -I. -I$(top_srcdir)/include -I$(top_srcdir) `pkg-config --cflags rasqal` +AM_LDFLAGS = `pkg-config --libs rasqal` + +bin_PROGRAMS = test_host jack_host + +test_host_DEPENDENCIES = ../../src/libslv2.la +test_host_LDADD = ../../src/libslv2.la + +test_host_SOURCES = \ + test_host.c + + +if WITH_JACK + +jack_host_CFLAGS = @JACK_CFLAGS@ $(AM_CFLAGS) +#jack_host_LIBS = @JACK_LIBS@ + +jack_host_DEPENDENCIES = ../../src/libslv2.la +jack_host_LDADD = ../../src/libslv2.la @JACK_LIBS@ + +jack_host_SOURCES = \ + jack_host.c + +endif # WITH_JACK -- cgit v1.2.1