blob: 4af52400cc77445a6ee1f308b90d5bc80d26dfb3 (
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
|
--- autoconf/Makefile.common.in Sat Aug 17 00:03:35 2002
+++ autoconf/Makefile.common.in Sat Aug 17 00:05:20 2002
@@ -10,10 +10,10 @@
install.bin: $(PROG)
$(STRIP) $(PROG)
- $(INSTALL_PROGRAM) $(PROG) $(AFTER_BIN_DIR)
+ $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(AFTER_BIN_DIR)
install.man:
- $(INSTALL_DATA) $(PROG).man $(AFTER_MAN_DIR)/$(PROG).1x
+ $(INSTALL_DATA) $(PROG).man $(DESTDIR)$(AFTER_MAN_DIR)/$(PROG).1x
uninstall:
$(RMF) $(AFTER_BIN_DIR)/$(PROG)
--- autoconf//Makefile.defines.in Sat Aug 17 00:06:03 2002
+++ autoconf/Makefile.defines.in Sat Aug 17 00:06:15 2002
@@ -2,6 +2,8 @@
# Copyright (c) 1998, Guylhem AZNAR <guylhem@oeil.qc.ca>
#
+DESTDIR =
+
CC = @CC@
CCFLAGS = @CFLAGS@
# -march=pentiumpro -mcpu=pentiumpro
|