annotate src/alsa/Makefile @ 486:3e41d8efe752
trunk
[svn] - flac 113 plugin: moved to vfs for file detection and playback; plays http files as well, but it does not use flac/http.c code to do it, so there's no metadata parsing and flac http options are ignored; flac tags are still read directly from stdio, with checks that prevents tag reading if file is not stdio-readable
| author |
giacomo |
| date |
Sun, 21 Jan 2007 10:40:40 -0800 |
| parents |
ad8e44bcdf8a |
| children |
550c9e382cf8 |
| rev |
line source |
|
17
|
1 include ../../mk/rules.mk
|
|
|
2 include ../../mk/init.mk
|
|
|
3
|
|
|
4 OBJECTIVE_LIBS = libALSA$(SHARED_SUFFIX)
|
|
|
5
|
|
|
6 noinst_HEADERS = alsa.h
|
|
|
7
|
|
|
8 LIBDIR = $(plugindir)/$(OUTPUT_PLUGIN_DIR)
|
|
|
9
|
|
388
|
10 LIBADD = $(GTK_LIBS) $(ALSA_LIBS) -lpthread
|
|
17
|
11 SOURCES = alsa.c about.c audio.c configure.c init.c
|
|
|
12
|
|
|
13 OBJECTS = ${SOURCES:.c=.o}
|
|
|
14
|
|
388
|
15 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(ALSA_CFLAGS) \
|
|
17
|
16 -I../../intl -I../..
|
|
|
17
|
|
|
18 include ../../mk/objective.mk
|