annotate src/OSS/Makefile @ 984:df7b09989aee trunk

[svn] - We got a new plugin, captain! - FileWriter is the ultimate plugin for dumping audio to files. It should be the successor of Disk Writer and Out-Lame, as it supports the same output formats as those (WAVE and MP3). The main advantage of having only one file dumping plugin for many formats is that not every plugin has to think about file handling (where to write files to, how to call them etc.) that much anymore. - FileWriter is also very extensible - adding new output formats should be very easy.
author mf0102
date Mon, 30 Apr 2007 14:16:32 -0700
parents 550c9e382cf8
children cae98a7eef82
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
17
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
1 include ../../mk/rules.mk
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
2 include ../../mk/init.mk
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
3
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
4 OBJECTIVE_LIBS = libOSS$(SHARED_SUFFIX)
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
5
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
6 noinst_HEADERS = OSS.h soundcard.h
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
7
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
8 LIBDIR = $(plugindir)/$(OUTPUT_PLUGIN_DIR)
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
9
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
10 LIBADD = $(OSS_LIBS) $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS)
17
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
11 SOURCES = OSS.c mixer.c about.c configure.c audio.c init.c convert.c
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
12
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
13 OBJECTS = ${SOURCES:.c=.o}
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
14
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
15 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) -I../../intl -I../..
17
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
16
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents:
diff changeset
17 include ../../mk/objective.mk