OSDN Git Service

Remove support for Intel C++ Compiler Classic
[timidity41/timidity41.git] / common.makefile.in
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 WINDRES = @WINDRES@
39
40 #DEFS = @DEFS@
41 #LDFLAGS = @LDFLAGS@
42 #LIBS = @LIBS@
43 #SHLD = @SHLD@
44 #SHCFLAGS = @SHCFLAGS@
45 #@SET_MAKE@
46
47
48 ## Package installations:
49 #prefix = @prefix@
50 #exec_prefix = @exec_prefix@
51 #bindir = @bindir@
52 #libdir = @libdir@
53 #datadir = @datadir@
54 #mandir = @mandir@
55 pkglibdir = @pkglibdir@
56 pkgdatadir = @pkgdatadir@
57 #INSTALL = @INSTALL@
58
59 # Where to install the patches, config files.
60 PKGDATADIR = $(pkgdatadir)
61
62 # Where to install the Tcl code and the bitmaps.
63 # It also contains bitmaps which are shared with XAW interface.
64 PKGLIBDIR = $(pkglibdir)
65
66 # Where to install the dynamic link interface.
67 SHLIB_DIR = $(pkglibdir)
68
69 # Where to install timidity.el
70 ELISP_DIR = $(lispdir)
71
72 # Where to install TiMidity.ad
73 XAWRES = ${xawresdir}/app-defaults
74 XAWRES_JA = ${xawresdir}/ja_JP.eucJP/app-defaults
75
76 # If you want to change TCL_DIR, please do follows.
77 # * Add -DTKPROGPATH=\"$(TCL_DIR)/tkmidity.tcl\" to CPPFLAGS.
78 # * Make a symbolic link $(PKGLIBDIR)/bitmaps to $(TCL_DIR)/bitmaps
79 TCL_DIR = $(PKGLIBDIR)
80 ##CPPFLAGS += -DTKPROGPATH=\"$(TCL_DIR)/tkmidity.tcl\"
81
82 # Define the timidity default file search path.
83 DEF_DEFAULT_PATH = -DDEFAULT_PATH=\"$(PKGDATADIR)\"
84
85 # You sould not change follows definitions. 
86 DEF_PKGDATADIR = -DPKGDATADIR=\"$(PKGDATADIR)\"
87 DEF_PKGLIBDIR = -DPKGLIBDIR=\"$(PKGLIBDIR)\"
88 DEF_SHLIB_DIR = -DSHLIB_DIR=\"$(SHLIB_DIR)\"
89 BITMAP_DIR = $(TCL_DIR)/bitmaps