Mercurial > audlegacy-plugins
annotate src/icecast/Makefile @ 2891:c27da2c06805
initial code for bookmarks
author | Calin Crisan ccrisan@gmail.com |
---|---|
date | Tue, 12 Aug 2008 23:49:32 +0200 |
parents | 3fce72e687dd |
children | 8220728cc77b |
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 \ |
2875
9d06c6456f98
use libSAD-based converter in icecast plugin
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2778
diff
changeset
|
5 ../filewriter/vorbis.o \ |
9d06c6456f98
use libSAD-based converter in icecast plugin
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2778
diff
changeset
|
6 ../filewriter/convert.o |
2767
fa4b58a08f4c
started icecast plugin (derived from filewriter)
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff
changeset
|
7 |
fa4b58a08f4c
started icecast plugin (derived from filewriter)
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff
changeset
|
8 include ../../buildsys.mk |
fa4b58a08f4c
started icecast plugin (derived from filewriter)
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff
changeset
|
9 include ../../extra.mk |
fa4b58a08f4c
started icecast plugin (derived from filewriter)
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff
changeset
|
10 |
fa4b58a08f4c
started icecast plugin (derived from filewriter)
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff
changeset
|
11 plugindir := ${plugindir}/${OUTPUT_PLUGIN_DIR} |
fa4b58a08f4c
started icecast plugin (derived from filewriter)
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff
changeset
|
12 |
2770
9bc47b31404a
added SHOUT_CFLAGS and SHOUT_LIBS
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2767
diff
changeset
|
13 CFLAGS += ${PLUGIN_CFLAGS} ${SHOUT_CFLAGS} |
9bc47b31404a
added SHOUT_CFLAGS and SHOUT_LIBS
Andrew O. Shadoura <bugzilla@tut.by>
parents:
2767
diff
changeset
|
14 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${GLIB_CFLAGS} ${GTK_CFLAGS} ${PANGO_CFLAGS} ${MOWGLI_CFLAGS} ${DBUS_CFLAGS} ${FILEWRITER_CFLAGS} ${OGG_VORBIS_CFLAGS} ${SHOUT_CFLAGS} -I../../intl -I../.. |
2887 | 15 LDFLAGS += ${AUDLDFLAGS} |
2878 | 16 LIBS += ${GTK_LIBS} ${FILEWRITER_LIBS} ${SHOUT_LIBS} -lSAD |