annotate src/timidity/libtimidity/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 f19e6748d8eb
children d447ee6c8bc0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
1 include ../../../mk/rules.mk
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
2 include ../../../mk/init.mk
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
3
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
4 OBJECTIVE_LIBS_NOINST = libtimidity.a
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
5
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
6 SOURCES = \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
7 common.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
8 instrum.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
9 instrum_dls.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
10 mix.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
11 output.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
12 playmidi.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
13 readmidi.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
14 resample.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
15 stream.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
16 tables.c \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
17 timidity.c
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
18
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: 26
diff changeset
19 CFLAGS += $(PICFLAGS) -I../../..
22
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
20
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
21 OBJECTS = ${SOURCES:.c=.o}
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
22
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
23 include ../../../mk/objective.mk