blob: 282e9dd1876bfb7ebf0f3175bd31fe37b8064ea4 (
plain)
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
|
--- Makefile~ 2003-01-23 16:41:33.000000000 +0100
+++ Makefile 2003-04-22 19:16:04.000000000 +0200
@@ -8,7 +8,9 @@
#
# installation directory
#
+ifndef $(PREFIX)
PREFIX = /usr/local
+endif
# binary and Tcl script are put there
BIN_DIR = $(PREFIX)/bin
# man page
@@ -24,15 +26,25 @@
# device selections -- multiple avaialble
# to disable the device, set value 0 (do not comment out!)
#
+ifndef $(USE_AWE)
USE_AWE = 1
+endif
+ifndef $(USE_MIDI)
USE_MIDI = 1
+endif
+ifndef $(USE_ALSA)
USE_ALSA = 1
+endif
+ifndef $(USE_LADCCA)
USE_LADCCA = 0
+endif
#
# Tcl/Tk library -- depends on your distribution
#
+ifndef $(TCL_VERSION)
TCL_VERSION = 8.4
+endif
TCLLIB = -ltcl$(TCL_VERSION)
TCLINC =
TKLIB = -ltk$(TCL_VERSION)
|