mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
39591c1e02
strobe is a network/security tool that locates and describes all listening tcp ports on a (remote) host or on many hosts in a bandwidth utilisation maximising, and pro- cess resource minimizing manner. strobe approximates a parallel finite state machine inter- nally. In non-linear multi-host mode it attempts to appor- tion bandwidth and sockets amoung the hosts very effi- ciently. This can reap appreciable gains in speed for multiple distinct hosts/routes. Submitted by: proff@suburbia.net (Julian Assange) Reviewed & Modified by: max (Closing PR #1663.)
34 lines
977 B
Plaintext
34 lines
977 B
Plaintext
--- Makefile.orig Mon Nov 27 18:39:11 1995
|
|
+++ Makefile Tue Jan 7 20:02:22 1997
|
|
@@ -3,9 +3,10 @@
|
|
|
|
# Modify the below to suit your filesystem
|
|
|
|
-INSTALLDIR=/usr/local/bin
|
|
-LIBDIR=/usr/local/lib
|
|
-MANDIR=/usr/local/man/man1
|
|
+PREFIX?=/usr/local
|
|
+INSTALLDIR=${PREFIX}/bin
|
|
+LIBDIR=${PREFIX}/lib
|
|
+MANDIR=${PREFIX}/man/man1
|
|
|
|
#CC=cc
|
|
CC=gcc
|
|
@@ -40,13 +41,13 @@
|
|
$(MAN):
|
|
$(INSTALLDIR)/$(BIN): $(BIN)
|
|
-rm -f $(INSTALLDIR)/$(BIN)
|
|
- install -m 755 -s $(BIN) $(INSTALLDIR)/$(BIN)
|
|
+ install -c -o bin -g bin -m 755 -s $(BIN) $(INSTALLDIR)/$(BIN)
|
|
$(LIBDIR)/$(DATA): $(DATA)
|
|
-rm -f $(LIBDIR)/$(DATA)
|
|
- install -m 644 $(DATA) $(LIBDIR)/$(DATA)
|
|
+ install -c -o bin -g bin -m 644 $(DATA) $(LIBDIR)/$(DATA)
|
|
$(MANDIR)/$(MAN): $(MAN)
|
|
-rm -f $(MANDIR)/$(MAN)
|
|
- install -m 644 $(MAN) $(MANDIR)/$(MAN)
|
|
+ install -c -o bin -g bin -m 644 $(MAN) $(MANDIR)/$(MAN)
|
|
install: $(INSTALLDIR)/$(BIN) $(LIBDIR)/$(DATA) $(MANDIR)/$(MAN)
|
|
strobe.man : $(MAN)
|
|
nroff -man -Tascii $(MAN) > strobe.man
|