mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-03 22:23:24 +00:00
4ba37079d0
PR: 3831 Submitted by: Josh Gilliam <josh@quick.net>
31 lines
661 B
Plaintext
31 lines
661 B
Plaintext
*** Configure.orig Sat Feb 10 02:41:40 1996
|
|
--- Configure Mon Jun 9 21:04:51 1997
|
|
***************
|
|
*** 159,167 ****
|
|
--- 159,170 ----
|
|
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,222 ****
|
|
--- 220,229 ----
|
|
|
|
cleandir: clean
|
|
rm -f .depend Makefile config.h
|
|
+
|
|
+ install:
|
|
+ install -o bin -g bin -s -m 755 $(PROG) $(DESTDIR)
|
|
+ install -o bin -g bin -s -m 755 sr $(DESTDIR)
|
|
|
|
##### DO NOT EDIT OR DELETE THIS LINE, it's needed by make depend #####
|
|
END
|