annotate src/jack/Makefile @ 387:0c50f248ed10 trunk

[svn] - added AUDACIOUS_LIBS and AUDACIOUS_CFLAGS to makefiles to ensure that plugins are linked to libaudacious
author giacomo
date Sun, 17 Dec 2006 07:06:34 -0800
parents cf1054422f81
children ad8e44bcdf8a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
17
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
1 include ../../mk/rules.mk
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
2 include ../../mk/init.mk
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
3
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
4 SOURCES = jack.c configure.c bio2jack.c
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
5
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
6 OBJECTIVE_LIBS = libjackout$(SHARED_SUFFIX)
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
7
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
8 LIBDIR = $(plugindir)/$(OUTPUT_PLUGIN_DIR)
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
9
387
0c50f248ed10 [svn] - added AUDACIOUS_LIBS and AUDACIOUS_CFLAGS to makefiles to ensure that plugins are linked to libaudacious
giacomo
parents: 17
diff changeset
10 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) -Wall $(SAMPLERATE_CFLAGS) $(AUDACIOUS_CFLAGS) -I../../intl -I../..
0c50f248ed10 [svn] - added AUDACIOUS_LIBS and AUDACIOUS_CFLAGS to makefiles to ensure that plugins are linked to libaudacious
giacomo
parents: 17
diff changeset
11 LIBADD = $(GTK_LIBS) $(JACK_LIBS) $(SAMPLERATE_LIBS) $(AUDACIOUS_LIBS) -lpthread
17
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
12
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
13 OBJECTS = ${SOURCES:.c=.o}
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
14
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
15 include ../../mk/objective.mk