annotate src/stdio/Makefile @ 972:cf7021ca4e7b trunk

[svn] Add lastfm:// transport, an abstract VFS class which derives from curl to provide lastfm radio support. Written by majeru with some cleanups by me. Most last.fm metadata support isn't yet implemented, however, and will need to be done by majeru. ;)
author nenolod
date Sun, 22 Apr 2007 04:16:08 -0700
parents 550c9e382cf8
children 5896bd827cbc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
306
b47f02042530 [svn] - pluginize the transport layer.
nenolod
parents:
diff changeset
1 include ../../mk/rules.mk
b47f02042530 [svn] - pluginize the transport layer.
nenolod
parents:
diff changeset
2 include ../../mk/init.mk
b47f02042530 [svn] - pluginize the transport layer.
nenolod
parents:
diff changeset
3
b47f02042530 [svn] - pluginize the transport layer.
nenolod
parents:
diff changeset
4 OBJECTIVE_LIBS = libstdio$(SHARED_SUFFIX)
b47f02042530 [svn] - pluginize the transport layer.
nenolod
parents:
diff changeset
5
b47f02042530 [svn] - pluginize the transport layer.
nenolod
parents:
diff changeset
6 # XXX
b47f02042530 [svn] - pluginize the transport layer.
nenolod
parents:
diff changeset
7 LIBDIR = $(plugindir)/$(CONTAINER_PLUGIN_DIR)
b47f02042530 [svn] - pluginize the transport layer.
nenolod
parents:
diff changeset
8
b47f02042530 [svn] - pluginize the transport layer.
nenolod
parents:
diff changeset
9 SOURCES = stdio.c
b47f02042530 [svn] - pluginize the transport layer.
nenolod
parents:
diff changeset
10
b47f02042530 [svn] - pluginize the transport layer.
nenolod
parents:
diff changeset
11 OBJECTS = ${SOURCES:.c=.o}
b47f02042530 [svn] - pluginize the transport layer.
nenolod
parents:
diff changeset
12
578
550c9e382cf8 [svn] - splitted GTK_CFLAGS in GTK_CFLAGS, GLIB_CFLAGS and PANGO_CFLAGS, splitted GTK_LIBS in GTK_LIBS, GLIB_LIBS, PANGO_LIBS
giacomo
parents: 388
diff changeset
13 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(ARCH_DEFINES) -I../../intl -I../..
306
b47f02042530 [svn] - pluginize the transport layer.
nenolod
parents:
diff changeset
14
b47f02042530 [svn] - pluginize the transport layer.
nenolod
parents:
diff changeset
15 CXXFLAGS = $(CFLAGS)
b47f02042530 [svn] - pluginize the transport layer.
nenolod
parents:
diff changeset
16
578
550c9e382cf8 [svn] - splitted GTK_CFLAGS in GTK_CFLAGS, GLIB_CFLAGS and PANGO_CFLAGS, splitted GTK_LIBS in GTK_LIBS, GLIB_LIBS, PANGO_LIBS
giacomo
parents: 388
diff changeset
17 LIBADD = $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS)
306
b47f02042530 [svn] - pluginize the transport layer.
nenolod
parents:
diff changeset
18
b47f02042530 [svn] - pluginize the transport layer.
nenolod
parents:
diff changeset
19 include ../../mk/objective.mk