20 lines
463 B
Plaintext
20 lines
463 B
Plaintext
--- Makefile.in~ Sat Dec 22 03:12:12 2001
|
|
+++ Makefile.in Sat Dec 22 03:12:48 2001
|
|
@@ -4,6 +4,8 @@ bindir = @bindir@
|
|
mandir = @mandir@/man1
|
|
LIBS = @LIBS@
|
|
|
|
+DESTDIR =
|
|
+
|
|
CFLAGS = -O
|
|
RM = rm -f
|
|
INSTALL = install -c -m
|
|
@@ -35,5 +37,5 @@ distclean:
|
|
$(RM) $(OBJS) $(PROG) $(CNF) $(MKF)
|
|
|
|
install: all
|
|
- $(INSTALL) 555 $(PROG) $(bindir)
|
|
- $(INSTALL) 444 $(MAN) $(mandir)
|
|
+ $(INSTALL) 555 $(PROG) $(DESTDIR)$(bindir)
|
|
+ $(INSTALL) 444 $(MAN) $(DESTDIR)$(mandir)
|