Mercurial > audlegacy-plugins
comparison src/lastfm/Makefile @ 1850:e0f6efc6b08c
lastfm: MK2
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Mon, 24 Sep 2007 14:19:35 -0500 |
parents | e2b45aa596ad |
children | eed7c270e8dd |
comparison
equal
deleted
inserted
replaced
1849:83c7c83c00f0 | 1850:e0f6efc6b08c |
---|---|
1 include ../../mk/rules.mk | 1 PLUGIN = lastfm$(PLUGIN_SUFFIX) |
2 include ../../mk/init.mk | 2 plugindir = audacious/$(TRANSPORT_PLUGIN_DIR) |
3 | 3 |
4 SUBDIRS = | 4 SRCS = lastfm.c |
5 | 5 |
6 OBJECTIVE_LIBS = liblastfm$(SHARED_SUFFIX) | 6 include ../../buildsys.mk |
7 include ../../extra.mk | |
7 | 8 |
8 LIBDIR = $(plugindir)/$(TRANSPORT_PLUGIN_DIR) | 9 CFLAGS += $(PLUGIN_CFLAGS) |
9 | 10 CPPFLAGS += $(PLUGIN_CPPFLAGS) $(MOWGLI_CFLAGS) $(DBUS_CFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(ARCH_DEFINES) $(XML_CPPFLAGS) \ |
10 LIBADD += $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) $(CURL_LIBS) | 11 $(CURL_CFLAGS) -I../../intl -I../.. -Wall |
11 | 12 LIBS += $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) $(XML_LIBS) $(CURL_LIBS) |
12 SOURCES = lastfm.c | |
13 | |
14 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(BEEP_DEFINES) $(CURL_CFLAGS) -I../../intl -I../.. -ggdb -g3 | |
15 | |
16 CFLAGS += -Wall -pedantic -std=c99 $(GCC42_CFLAGS) | |
17 #CFLAGS += -Wpointer-arith -Wimplicit -Wnested-externs -Wcast-align \ | |
18 #-Wcast-qual -Wstrict-prototypes -Wmissing-prototypes \ | |
19 #-Wmissing-declarations -W -Wno-unused -Wshadow -Wmissing-noreturn \ | |
20 #-Wundef -Wpacked -Wnested-externs -Wbad-function-cast -Wredundant-decls \ | |
21 #-Wfloat-equal -Wdisabled-optimization -pedantic -std=c99 | |
22 | |
23 OBJECTS = ${SOURCES:.c=.o} | |
24 | |
25 include ../../mk/objective.mk |