annotate src/filewriter/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
children 5523559a1eac
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
984
df7b09989aee [svn] - We got a new plugin, captain!
mf0102
parents:
diff changeset
1 include ../../mk/rules.mk
df7b09989aee [svn] - We got a new plugin, captain!
mf0102
parents:
diff changeset
2 include ../../mk/init.mk
df7b09989aee [svn] - We got a new plugin, captain!
mf0102
parents:
diff changeset
3
df7b09989aee [svn] - We got a new plugin, captain!
mf0102
parents:
diff changeset
4 OBJECTIVE_LIBS = libfilewriter$(SHARED_SUFFIX)
df7b09989aee [svn] - We got a new plugin, captain!
mf0102
parents:
diff changeset
5
df7b09989aee [svn] - We got a new plugin, captain!
mf0102
parents:
diff changeset
6 LIBDIR = $(plugindir)/$(OUTPUT_PLUGIN_DIR)
df7b09989aee [svn] - We got a new plugin, captain!
mf0102
parents:
diff changeset
7
df7b09989aee [svn] - We got a new plugin, captain!
mf0102
parents:
diff changeset
8 LIBADD = $(GTK_LIBS) -lmp3lame
df7b09989aee [svn] - We got a new plugin, captain!
mf0102
parents:
diff changeset
9 SOURCES = filewriter.c wav.c mp3.c
df7b09989aee [svn] - We got a new plugin, captain!
mf0102
parents:
diff changeset
10
df7b09989aee [svn] - We got a new plugin, captain!
mf0102
parents:
diff changeset
11 OBJECTS = ${SOURCES:.c=.o}
df7b09989aee [svn] - We got a new plugin, captain!
mf0102
parents:
diff changeset
12
df7b09989aee [svn] - We got a new plugin, captain!
mf0102
parents:
diff changeset
13 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) -I../../intl -I../.. -Wall
df7b09989aee [svn] - We got a new plugin, captain!
mf0102
parents:
diff changeset
14
df7b09989aee [svn] - We got a new plugin, captain!
mf0102
parents:
diff changeset
15 include ../../mk/objective.mk