annotate src/null/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 5dfc0e491ad3
children ad8e44bcdf8a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
144
5dfc0e491ad3 [svn] Null output plugin added; original code by Christian Birchinger <joker -at- gentoo.org>
kiyoshi
parents:
diff changeset
1 include ../../mk/rules.mk
5dfc0e491ad3 [svn] Null output plugin added; original code by Christian Birchinger <joker -at- gentoo.org>
kiyoshi
parents:
diff changeset
2 include ../../mk/init.mk
5dfc0e491ad3 [svn] Null output plugin added; original code by Christian Birchinger <joker -at- gentoo.org>
kiyoshi
parents:
diff changeset
3
5dfc0e491ad3 [svn] Null output plugin added; original code by Christian Birchinger <joker -at- gentoo.org>
kiyoshi
parents:
diff changeset
4 OBJECTIVE_LIBS = libnull${SHARED_SUFFIX}
5dfc0e491ad3 [svn] Null output plugin added; original code by Christian Birchinger <joker -at- gentoo.org>
kiyoshi
parents:
diff changeset
5
5dfc0e491ad3 [svn] Null output plugin added; original code by Christian Birchinger <joker -at- gentoo.org>
kiyoshi
parents:
diff changeset
6 LIBDIR = ${plugindir}/${OUTPUT_PLUGIN_DIR}
387
0c50f248ed10 [svn] - added AUDACIOUS_LIBS and AUDACIOUS_CFLAGS to makefiles to ensure that plugins are linked to libaudacious
giacomo
parents: 144
diff changeset
7 LIBADD = $(AUDACIOUS_LIBS)
144
5dfc0e491ad3 [svn] Null output plugin added; original code by Christian Birchinger <joker -at- gentoo.org>
kiyoshi
parents:
diff changeset
8
5dfc0e491ad3 [svn] Null output plugin added; original code by Christian Birchinger <joker -at- gentoo.org>
kiyoshi
parents:
diff changeset
9 SOURCES = null.c
5dfc0e491ad3 [svn] Null output plugin added; original code by Christian Birchinger <joker -at- gentoo.org>
kiyoshi
parents:
diff changeset
10
5dfc0e491ad3 [svn] Null output plugin added; original code by Christian Birchinger <joker -at- gentoo.org>
kiyoshi
parents:
diff changeset
11 OBJECTS = ${SOURCES:.c=.o}
5dfc0e491ad3 [svn] Null output plugin added; original code by Christian Birchinger <joker -at- gentoo.org>
kiyoshi
parents:
diff changeset
12
387
0c50f248ed10 [svn] - added AUDACIOUS_LIBS and AUDACIOUS_CFLAGS to makefiles to ensure that plugins are linked to libaudacious
giacomo
parents: 144
diff changeset
13 CFLAGS += ${PICFLAGS} $(AUDACIOUS_CFLAGS) \
144
5dfc0e491ad3 [svn] Null output plugin added; original code by Christian Birchinger <joker -at- gentoo.org>
kiyoshi
parents:
diff changeset
14 -I../..
5dfc0e491ad3 [svn] Null output plugin added; original code by Christian Birchinger <joker -at- gentoo.org>
kiyoshi
parents:
diff changeset
15
5dfc0e491ad3 [svn] Null output plugin added; original code by Christian Birchinger <joker -at- gentoo.org>
kiyoshi
parents:
diff changeset
16 include ../../mk/objective.mk