annotate src/icecast/Makefile @ 2778:28d9a2148cad

fixed plugins build order: filewriter needs to be built before icecast
author Andrew O. Shadoura <bugzilla@tut.by>
date Fri, 13 Jun 2008 07:22:59 +0300
parents 9bc47b31404a
children 9d06c6456f98
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2767
fa4b58a08f4c started icecast plugin (derived from filewriter)
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff changeset
1 PLUGIN = icecast${PLUGIN_SUFFIX}
fa4b58a08f4c started icecast plugin (derived from filewriter)
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff changeset
2
2778
28d9a2148cad fixed plugins build order: filewriter needs to be built before icecast
Andrew O. Shadoura <bugzilla@tut.by>
parents: 2770
diff changeset
3 SRCS = icecast.c \
28d9a2148cad fixed plugins build order: filewriter needs to be built before icecast
Andrew O. Shadoura <bugzilla@tut.by>
parents: 2770
diff changeset
4 ../filewriter/mp3.o \
2767
fa4b58a08f4c started icecast plugin (derived from filewriter)
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff changeset
5 ../filewriter/vorbis.o
fa4b58a08f4c started icecast plugin (derived from filewriter)
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff changeset
6
fa4b58a08f4c started icecast plugin (derived from filewriter)
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff changeset
7 include ../../buildsys.mk
fa4b58a08f4c started icecast plugin (derived from filewriter)
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff changeset
8 include ../../extra.mk
fa4b58a08f4c started icecast plugin (derived from filewriter)
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff changeset
9
fa4b58a08f4c started icecast plugin (derived from filewriter)
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff changeset
10 plugindir := ${plugindir}/${OUTPUT_PLUGIN_DIR}
fa4b58a08f4c started icecast plugin (derived from filewriter)
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff changeset
11
2770
9bc47b31404a added SHOUT_CFLAGS and SHOUT_LIBS
Andrew O. Shadoura <bugzilla@tut.by>
parents: 2767
diff changeset
12 CFLAGS += ${PLUGIN_CFLAGS} ${SHOUT_CFLAGS}
9bc47b31404a added SHOUT_CFLAGS and SHOUT_LIBS
Andrew O. Shadoura <bugzilla@tut.by>
parents: 2767
diff changeset
13 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${GLIB_CFLAGS} ${GTK_CFLAGS} ${PANGO_CFLAGS} ${MOWGLI_CFLAGS} ${DBUS_CFLAGS} ${FILEWRITER_CFLAGS} ${OGG_VORBIS_CFLAGS} ${SHOUT_CFLAGS} -I../../intl -I../..
9bc47b31404a added SHOUT_CFLAGS and SHOUT_LIBS
Andrew O. Shadoura <bugzilla@tut.by>
parents: 2767
diff changeset
14 LIBS += ${GTK_LIBS} ${FILEWRITER_LIBS} ${SHOUT_LIBS}