blob: 55783615d86930644c50cef653e68e6a68ff4795 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- makefile.orig Tue Jan 23 00:02:00 2001
+++ makefile Tue Jan 23 12:57:32 2001
@@ -3,16 +3,16 @@
#
# change these variables to fit your needs
-MANDIR=/usr/local/man
+MANDIR=$(PREFIX)/man
PACKAGE=quelcom
-LOCALEDIR=~/share/locale
+LOCALEDIR=$(PREFIX)/share/locale
#BINDIR=/usr/local/bin
# you should change BINDIR in src/makefile
VERSION=0.3.0
all:
- cd src; make
+ cd src; $(MAKE)
clean:
cd src; make clean
|