annotate src/filewriter/Makefile @ 986:5523559a1eac trunk

[svn] - add Vorbis output mode - change "Output file extension" to "Output file format" - link against -lvorbisenc, this will probably want to be adjusted before we make a release on a 1.4 branch
author nenolod
date Mon, 30 Apr 2007 21:18:44 -0700
parents df7b09989aee
children 67cf9a1e3dc5
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
986
5523559a1eac [svn] - add Vorbis output mode
nenolod
parents: 984
diff changeset
8 LIBADD = $(GTK_LIBS) -lmp3lame -lvorbisenc
5523559a1eac [svn] - add Vorbis output mode
nenolod
parents: 984
diff changeset
9 SOURCES = filewriter.c wav.c mp3.c vorbis.c
984
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