blob: e1d8a9af09934864e303287072361cbdc9676b5c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- Makefile.orig Fri Oct 16 10:05:01 1998
+++ Makefile Fri Oct 16 10:05:57 1998
@@ -1,14 +1,14 @@
#-----------------------------------------------------
# The locations where this program should be installed
-INSTALL_DIR=/usr/local/bin
-MAN_DIR=/usr/local/man/man1
+INSTALL_DIR=${PREFIX}/bin
+MAN_DIR=${PREFIX}/man/man1
# The location and names of the X11 libraries
-LDIR = -L/usr/X11R6/lib
+LDIR = -L${PREFIX}/lib
LIBS = -lXpm -lX11
# The include path to the X11 files
-C_INCLUDE = -I. -I/usr/X11R6/include
+C_INCLUDE = -I. -I${PREFIX}/include
#-----------------------------------------------------
CC = gcc
|