forked from geofft/timidity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.makefile.in
88 lines (73 loc) · 2.79 KB
/
common.makefile.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
## TiMidity++ -- MIDI to WAVE converter and player
## Copyright (C) 1999-2002 Masanao Izumo <[email protected]>
## Copyright (C) 1995 Tuukka Toivonen <[email protected]>
##
## 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@
#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