# TiMidity++ -- MIDI to WAVE converter and player # Copyright (C) 1999 Masanao Izumo # Copyright (C) 1995 Tuukka Toivonen # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. LIBS=@LIBS@ INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/timidity \ -I$(top_srcdir)/libarc \ -I$(top_srcdir)/utils \ $(EXTRAINCS) bin_PROGRAMS = wav2pat mididump bag patinfo lsmidiprog sf2text wav2pat_SOURCES = \ wav2pat.c mididump_SOURCES = \ mididump.c mididump_LDADD = \ $(top_builddir)/timidity/common.o \ $(top_builddir)/libarc/libarc.a \ $(top_builddir)/utils/libutils.a \ $(LIBS) bag_SOURCES = \ bag.c patinfo_SOURCES = \ patinfo.c lsmidiprog_SOURCES = \ lsmidiprog.c lsmidiprog_LDADD = \ $(top_builddir)/timidity/readmidi.o \ $(top_builddir)/timidity/rcp.o \ $(top_builddir)/timidity/common.o \ $(top_builddir)/timidity/tables.o \ $(top_builddir)/libarc/libarc.a \ $(top_builddir)/utils/libutils.a \ $(LIBS) sf2text_SOURCES = \ sf2text.c \ gentxt.c sf2text_LDADD = \ $(top_builddir)/timidity/common.o \ $(top_builddir)/timidity/sffile.o \ $(top_builddir)/timidity/sfitem.o \ $(top_builddir)/timidity/sbkconv.o \ $(top_builddir)/libarc/libarc.a \ $(top_builddir)/utils/libutils.a \ $(LIBS) EXTRA_DIST = \ my \ my.pl include $(top_srcdir)/common.makefile .c.o: $(COMPILE) -c $< -o $@