blob: b979c879e0e9a1ed46126e1ad2d7388042ede279 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
$NetBSD: patch-aa,v 1.3 2003/09/22 14:10:16 jmmv Exp $
--- Makefile.orig 2003-04-06 07:18:03.000000000 +0200
+++ Makefile
@@ -21,8 +21,8 @@ SHELL = /bin/sh
# If they don't exist, this makefile will try to create the directories
# LIBDIR and SHAREDIR. All others must already exist.
-JOVEHOME = /usr/local
-SHAREDIR = $(JOVEHOME)/lib/jove
+JOVEHOME = $(PREFIX)
+SHAREDIR = $(JOVEHOME)/share/jove
LIBDIR = $(JOVEHOME)/lib/jove
BINDIR = $(JOVEHOME)/bin
XEXT=
@@ -38,11 +38,11 @@ MANEXT = 1
# (in case the system startup salvages tempfiles by moving them,
# which is probably a good idea).
-TMPDIR = /tmp
+TMPDIR = /var/tmp
RECDIR = /var/preserve
# DFLTSHELL is the default shell invoked by JOVE and TEACHJOVE.
-DFLTSHELL = /bin/csh
+DFLTSHELL = /bin/sh
# The install commands of BSD and System V differ in unpleasant ways:
# -c: copy (BSD); -c dir: destination directory (SysV)
@@ -53,15 +53,15 @@ DFLTSHELL = /bin/csh
# "cp" will work reasonably well, but be aware that any links continue
# referencing the old file with new contents.
-INSTALLFLAGS = # -g bin -o root
+INSTALLFLAGS = -g $(ROOT_GROUP) -o $(ROOT_USER)
# to install executable files
-XINSTALL=cp
+XINSTALL=$(BSD_INSTALL_PROGRAM)
#XINSTALL=/usr/ucb/install $(INSTALLFLAGS) -c -m 755 # -s
#CYGWIN32: XINSTALL=install $(INSTALLFLAGS) -c -m 755
# to install text files
-TINSTALL=cp
+TINSTALL=$(BSD_INSTALL_DATA)
#TINSTALL=/usr/ucb/install $(INSTALLFLAGS) -c -m 644
#CYGWIN32: TINSTALL=install $(INSTALLFLAGS) -c -m 644
@@ -146,7 +146,7 @@ SYSDEFS = -DBSDPOSIX
# On DEC OSF/1 and Digital UNIX VV4.0, add -std1 to enable ANSI C features
# and perhaps -g3 for more debugging info with optimization.
-OPTFLAGS = -O
+OPTFLAGS += -O2
# For making dependencies under BSD systems
DEPENDFLAG = -M
|