| 1 |
## TiMidity++ -- MIDI to WAVE converter and player |
| 2 |
## Copyright (C) 1999-2002 Masanao Izumo <mo@goice.co.jp> |
| 3 |
## Copyright (C) 1995 Tuukka Toivonen <tt@cgs.fi> |
| 4 |
## |
| 5 |
## This program is free software; you can redistribute it and/or modify |
| 6 |
## it under the terms of the GNU General Public License as published by |
| 7 |
## the Free Software Foundation; either version 2 of the License, or |
| 8 |
## (at your option) any later version. |
| 9 |
## |
| 10 |
## This program is distributed in the hope that it will be useful, |
| 11 |
## but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 |
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 |
## GNU General Public License for more details. |
| 14 |
## |
| 15 |
## You should have received a copy of the GNU General Public License |
| 16 |
## along with this program; if not, write to the Free Software |
| 17 |
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 18 |
|
| 19 |
# Define follows if you want to change. |
| 20 |
# Note that the definition of beginning with just one `#' implies |
| 21 |
# default value from configure. |
| 22 |
|
| 23 |
SHELL=@SHELL@ |
| 24 |
|
| 25 |
|
| 26 |
## Package compilations |
| 27 |
## Please modify and uncomment if you want to change. |
| 28 |
#CC= @CC@ |
| 29 |
#CFLAGS = @CFLAGS@ |
| 30 |
# For pentium gcc |
| 31 |
##CFLAGS = -O3 -mpentium -march=pentium -fomit-frame-pointer \ |
| 32 |
## -funroll-all-loops -malign-double -ffast-math |
| 33 |
# For PGCC |
| 34 |
##CFLAGS = -O6 -mpentium -fomit-frame-pointer -funroll-all-loops -ffast-math \ |
| 35 |
## -fno-peep-spills \ |
| 36 |
## -fno-exceptions -malign-jumps=0 -malign-loops=0 -malign-functions=0 |
| 37 |
#CPPFLAGS = @CPPFLAGS@ |
| 38 |
|
| 39 |
#DEFS = @DEFS@ |
| 40 |
#LDFLAGS = @LDFLAGS@ |
| 41 |
#LIBS = @LIBS@ |
| 42 |
#SHLD = @SHLD@ |
| 43 |
#SHCFLAGS = @SHCFLAGS@ |
| 44 |
#@SET_MAKE@ |
| 45 |
|
| 46 |
|
| 47 |
## Package installations: |
| 48 |
#prefix = @prefix@ |
| 49 |
#exec_prefix = @exec_prefix@ |
| 50 |
#bindir = @bindir@ |
| 51 |
#libdir = @libdir@ |
| 52 |
#datadir = @datadir@ |
| 53 |
#mandir = @mandir@ |
| 54 |
pkglibdir = @pkglibdir@ |
| 55 |
pkgdatadir = @pkgdatadir@ |
| 56 |
#INSTALL = @INSTALL@ |
| 57 |
|
| 58 |
# Where to install the patches, config files. |
| 59 |
PKGDATADIR = $(pkgdatadir) |
| 60 |
|
| 61 |
# Where to install the Tcl code and the bitmaps. |
| 62 |
# It also contains bitmaps which are shared with XAW interface. |
| 63 |
PKGLIBDIR = $(pkglibdir) |
| 64 |
|
| 65 |
# Where to install the dynamic link interface. |
| 66 |
SHLIB_DIR = $(pkglibdir) |
| 67 |
|
| 68 |
# Where to install timidity.el |
| 69 |
ELISP_DIR = $(pkgdatadir) |
| 70 |
|
| 71 |
# If you want to change TCL_DIR, please do follows. |
| 72 |
# * Add -DTKPROGPATH=\"$(TCL_DIR)/tkmidity.tcl\" to CPPFLAGS. |
| 73 |
# * Make a symbolic link $(PKGLIBDIR)/bitmaps to $(TCL_DIR)/bitmaps |
| 74 |
TCL_DIR = $(PKGLIBDIR) |
| 75 |
##CPPFLAGS += -DTKPROGPATH=\"$(TCL_DIR)/tkmidity.tcl\" |
| 76 |
|
| 77 |
# Define the timidity default file search path. |
| 78 |
DEF_DEFAULT_PATH = -DDEFAULT_PATH=\"$(PKGDATADIR)\" |
| 79 |
|
| 80 |
# You sould not change follows definitions. |
| 81 |
DEF_PKGDATADIR = -DPKGDATADIR=\"$(PKGDATADIR)\" |
| 82 |
DEF_PKGLIBDIR = -DPKGLIBDIR=\"$(PKGLIBDIR)\" |
| 83 |
DEF_SHLIB_DIR = -DSHLIB_DIR=\"$(SHLIB_DIR)\" |
| 84 |
BITMAP_DIR = $(TCL_DIR)/bitmaps |