annotate Plugins/Output/jack/Makefile.in @ 719:a403471b7429 trunk

[svn] - convert to objective make. needs testing.
author nenolod
date Sun, 26 Feb 2006 20:32:47 -0800
parents
children e6c59e08f0c5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
719
a403471b7429 [svn] - convert to objective make. needs testing.
nenolod
parents:
diff changeset
1 include ../../../mk/rules.mk
a403471b7429 [svn] - convert to objective make. needs testing.
nenolod
parents:
diff changeset
2 include ../../../mk/objective.mk
a403471b7429 [svn] - convert to objective make. needs testing.
nenolod
parents:
diff changeset
3
a403471b7429 [svn] - convert to objective make. needs testing.
nenolod
parents:
diff changeset
4 SOURCES = jack.c configure.c bio2jack.c
a403471b7429 [svn] - convert to objective make. needs testing.
nenolod
parents:
diff changeset
5
a403471b7429 [svn] - convert to objective make. needs testing.
nenolod
parents:
diff changeset
6 OBJECTIVE_LIBS = libjackout.so
a403471b7429 [svn] - convert to objective make. needs testing.
nenolod
parents:
diff changeset
7
a403471b7429 [svn] - convert to objective make. needs testing.
nenolod
parents:
diff changeset
8 LIBDIR = $(plugindir)/$(OUTPUT_PLUGIN_DIR)
a403471b7429 [svn] - convert to objective make. needs testing.
nenolod
parents:
diff changeset
9
a403471b7429 [svn] - convert to objective make. needs testing.
nenolod
parents:
diff changeset
10 CFLAGS += -fPIC -DPIC -shared $(GTK_CFLAGS) $(JACK_CFLAGS) -Wall $(SAMPLERATE_CFLAGS)
a403471b7429 [svn] - convert to objective make. needs testing.
nenolod
parents:
diff changeset
11 LIBS = $(GTK_LIBS) $(JACK_LIBS) $(SAMPLERATE_LIBS) -lpthread
a403471b7429 [svn] - convert to objective make. needs testing.
nenolod
parents:
diff changeset
12
a403471b7429 [svn] - convert to objective make. needs testing.
nenolod
parents:
diff changeset
13 OBJECTS = ${SOURCES:.c=.o}