## TiMidity++ -- MIDI to WAVE converter and player ## Copyright (C) 1999-2002 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Define follows if you want to change. # Note that the definition of beginning with just one `#' implies # default value from configure. SHELL=@SHELL@ ## Package compilations ## Please modify and uncomment if you want to change. #CC= @CC@ #CFLAGS = @CFLAGS@ # For pentium gcc ##CFLAGS = -O3 -mpentium -march=pentium -fomit-frame-pointer \ ## -funroll-all-loops -malign-double -ffast-math # For PGCC ##CFLAGS = -O6 -mpentium -fomit-frame-pointer -funroll-all-loops -ffast-math \ ## -fno-peep-spills \ ## -fno-exceptions -malign-jumps=0 -malign-loops=0 -malign-functions=0 #CPPFLAGS = @CPPFLAGS@ WINDRES = @WINDRES@ #DEFS = @DEFS@ #LDFLAGS = @LDFLAGS@ #LIBS = @LIBS@ #SHLD = @SHLD@ #SHCFLAGS = @SHCFLAGS@ #@SET_MAKE@ ## Package installations: #prefix = @prefix@ #exec_prefix = @exec_prefix@ #bindir = @bindir@ #libdir = @libdir@ #datadir = @datadir@ #mandir = @mandir@ pkglibdir = @pkglibdir@ pkgdatadir = @pkgdatadir@ #INSTALL = @INSTALL@ # Where to install the patches, config files. PKGDATADIR = $(pkgdatadir) # Where to install the Tcl code and the bitmaps. # It also contains bitmaps which are shared with XAW interface. PKGLIBDIR = $(pkglibdir) # Where to install the dynamic link interface. SHLIB_DIR = $(pkglibdir) # Where to install timidity.el ELISP_DIR = $(lispdir) # Where to install TiMidity.ad XAWRES = ${xawresdir}/app-defaults XAWRES_JA = ${xawresdir}/ja_JP.eucJP/app-defaults # If you want to change TCL_DIR, please do follows. # * Add -DTKPROGPATH=\"$(TCL_DIR)/tkmidity.tcl\" to CPPFLAGS. # * Make a symbolic link $(PKGLIBDIR)/bitmaps to $(TCL_DIR)/bitmaps TCL_DIR = $(PKGLIBDIR) ##CPPFLAGS += -DTKPROGPATH=\"$(TCL_DIR)/tkmidity.tcl\" # Define the timidity default file search path. DEF_DEFAULT_PATH = -DDEFAULT_PATH=\"$(PKGDATADIR)\" # You sould not change follows definitions. DEF_PKGDATADIR = -DPKGDATADIR=\"$(PKGDATADIR)\" DEF_PKGLIBDIR = -DPKGLIBDIR=\"$(PKGLIBDIR)\" DEF_SHLIB_DIR = -DSHLIB_DIR=\"$(SHLIB_DIR)\" BITMAP_DIR = $(TCL_DIR)/bitmaps