annotate src/streambrowser/Makefile @ 2791:f9c6a9cb442e

streambrowser has now an icon
author Calin Crisan ccrisan@gmail.com
date Wed, 09 Jul 2008 22:52:56 +0300
parents bbde87558ec7
children cc6f02424609
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2570
28498c0bde64 Initial commit for the streambrowser plugin
Calin Crisan ccrisan@gmail.com
parents:
diff changeset
1 PLUGIN = streambrowser${PLUGIN_SUFFIX}
28498c0bde64 Initial commit for the streambrowser plugin
Calin Crisan ccrisan@gmail.com
parents:
diff changeset
2
28498c0bde64 Initial commit for the streambrowser plugin
Calin Crisan ccrisan@gmail.com
parents:
diff changeset
3 SRCS = streambrowser.c \
28498c0bde64 Initial commit for the streambrowser plugin
Calin Crisan ccrisan@gmail.com
parents:
diff changeset
4 streamdir.c \
2735
6d6a3eb67510 some work on the streambrowser
Calin Crisan ccrisan@gmail.com
parents: 2570
diff changeset
5 shoutcast.c \
6d6a3eb67510 some work on the streambrowser
Calin Crisan ccrisan@gmail.com
parents: 2570
diff changeset
6 gui/about_win.c \
6d6a3eb67510 some work on the streambrowser
Calin Crisan ccrisan@gmail.com
parents: 2570
diff changeset
7 gui/streambrowser_win.c
2570
28498c0bde64 Initial commit for the streambrowser plugin
Calin Crisan ccrisan@gmail.com
parents:
diff changeset
8
2791
f9c6a9cb442e streambrowser has now an icon
Calin Crisan ccrisan@gmail.com
parents: 2763
diff changeset
9 DATA = images/shoutcast.png \
f9c6a9cb442e streambrowser has now an icon
Calin Crisan ccrisan@gmail.com
parents: 2763
diff changeset
10 images/streambrowser-16x16.png \
f9c6a9cb442e streambrowser has now an icon
Calin Crisan ccrisan@gmail.com
parents: 2763
diff changeset
11 images/streambrowser-64x64.png
2757
4ec0e13208de added shoutcast icon; fixed some small bugs
Calin Crisan ccrisan@gmail.com
parents: 2735
diff changeset
12
2570
28498c0bde64 Initial commit for the streambrowser plugin
Calin Crisan ccrisan@gmail.com
parents:
diff changeset
13 include ../../buildsys.mk
28498c0bde64 Initial commit for the streambrowser plugin
Calin Crisan ccrisan@gmail.com
parents:
diff changeset
14 include ../../extra.mk
28498c0bde64 Initial commit for the streambrowser plugin
Calin Crisan ccrisan@gmail.com
parents:
diff changeset
15
2757
4ec0e13208de added shoutcast icon; fixed some small bugs
Calin Crisan ccrisan@gmail.com
parents: 2735
diff changeset
16 PACKAGE = audacious
4ec0e13208de added shoutcast icon; fixed some small bugs
Calin Crisan ccrisan@gmail.com
parents: 2735
diff changeset
17
2763
bbde87558ec7 integrated streambrowser into the main buildsystem
Calin Crisan ccrisan@gmail.com
parents: 2757
diff changeset
18 plugindir := ${plugindir}/${GENERAL_PLUGIN_DIR}
2570
28498c0bde64 Initial commit for the streambrowser plugin
Calin Crisan ccrisan@gmail.com
parents:
diff changeset
19
2757
4ec0e13208de added shoutcast icon; fixed some small bugs
Calin Crisan ccrisan@gmail.com
parents: 2735
diff changeset
20 CFLAGS += ${PLUGIN_CFLAGS} ${BEEP_DEFINES}
2570
28498c0bde64 Initial commit for the streambrowser plugin
Calin Crisan ccrisan@gmail.com
parents:
diff changeset
21 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${MOWGLI_CFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${XML_CPPFLAGS} ${ARCH_DEFINES} -I../..
28498c0bde64 Initial commit for the streambrowser plugin
Calin Crisan ccrisan@gmail.com
parents:
diff changeset
22 LIBS += ${GTK_LIBS} ${GLIB_LIBS} ${MOWGLI_LIBS} ${XML_LIBS}
2757
4ec0e13208de added shoutcast icon; fixed some small bugs
Calin Crisan ccrisan@gmail.com
parents: 2735
diff changeset
23