annotate src/alsa/Makefile @ 569:d401f87f89f7
trunk
[svn] - added Audacious OSD, yet-another-written-from-scratch plugin to display OSD, based on Ghosd library; currently untied from configure, to compile it you have to run make in its directory; will be added to configure after some testing
author |
giacomo |
date |
Mon, 29 Jan 2007 06:40:04 -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
|