Mercurial > audlegacy-plugins
annotate src/scrobbler/Makefile @ 1795:c66d632520d1
scrobbler: Mk2
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Mon, 24 Sep 2007 12:33:34 -0500 |
parents | 238055a6cb8f |
children | eed7c270e8dd |
rev | line source |
---|---|
1795 | 1 include ../../extra.mk |
17 | 2 |
1795 | 3 PLUGIN = scrobbler$(SHARED_SUFFIX) |
4 plugindir = audacious/$(GENERAL_PLUGIN_DIR) | |
17 | 5 |
1795 | 6 DATA = images/audioscrobbler.png images/audioscrobbler_badge.png |
17 | 7 |
1795 | 8 SRCS = \ |
17 | 9 fmt.c \ |
10 configure.c \ | |
11 gtkstuff.c \ | |
12 md5.c \ | |
13 scrobbler.c \ | |
344
03c1ae10bc8d
[svn] - Merge audacious-scrobbler III, new features include:
nenolod
parents:
94
diff
changeset
|
14 gerpok.c \ |
346 | 15 plugin.c |
17 | 16 |
1795 | 17 include ../../buildsys.mk |
18 | |
19 # XXX: used to get install paths right | |
20 PACKAGE = audacious | |
17 | 21 |
1795 | 22 CFLAGS += $(PLUGIN_CFLAGS) |
23 CPPFLAGS += $(PLUGIN_CPPFLAGS) $(MOWGLI_CFLAGS) $(DBUS_CFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(BEEP_DEFINES) $(CURL_CFLAGS) \ | |
24 -I../../intl -I../.. | |
25 LIBS += $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) $(CURL_LIBS) $(MUSICBRAINZ_LIBS) | |
17 | 26 |