blob: 54d32fa0a971f61e986ef4c156c00e3668cfb692 (
plain) (
blame)
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
|
--- Makefile.orig Sun Sep 28 16:42:30 2003
+++ Makefile Sun Sep 28 16:43:48 2003
@@ -15,18 +15,18 @@
# this must be a directory that's in your bin PATH.
# MANDIR holds the man page.
-BINDIR = /opt/local/bin
+BINDIR = ${PREFIX}/bin
#BINDIR = /usr/local/bin
#BINDIR = //C/bin
-MANDIR = /usr/local/man/man1
+MANDIR = ${PREFIX}/man/man1
# popular alternative
#BINDIR = /opt/local/bin
#MANDIR = /opt/local/man/man1
### if you have GNU gcc, use these definitions
-CC = gcc
-CFLAGS = -O2 -finline-functions
+#CC = gcc
+CFLAGS+= -O2 -finline-functions
### if you just have a standard UNIX, use these instead of GNU.
### CC must be an ANSI C compiler
|