blob: 0060bcfdc022378c8cf32a40dafcea75a74191d5 (
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
26
|
--- Configure.orig Sat Feb 10 04:41:40 1996
+++ Configure Sun Sep 27 18:49:59 1998
@@ -159,9 +159,12 @@
PROG = netris
HEADERS = netris.h
+PREFIX?=/usr/local
SRCS = -SRCS-
OBJS = -OBJS-
DISTFILES = -DISTFILES-
+DESTDIR= $(PREFIX)/bin
+MANDIR= $(PREFIX)/man
all: Makefile config.h proto.h $(PROG) sr
@@ -217,6 +220,10 @@
cleandir: clean
rm -f .depend Makefile config.h
+
+install:
+ install -c -o bin -g bin -s -m 755 $(PROG) $(DESTDIR)
+ install -c -o bin -g bin -s -m 755 sr $(DESTDIR)
##### DO NOT EDIT OR DELETE THIS LINE, it's needed by make depend #####
END
|