mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 17:46:38 -04:00
39 lines
1.2 KiB
Text
39 lines
1.2 KiB
Text
--- Makefile.orig 2004-03-31 12:19:34 UTC
|
|
+++ Makefile
|
|
@@ -64,17 +64,17 @@ OPTIONS += -DIPTABLES
|
|
#OPTIONS += -DHAVE_GETOPT_H
|
|
|
|
# You may need to touch PREFIX, CC and CFLAGS.
|
|
-PREFIX = /usr/local
|
|
-INSTALL_PROGRAM = install -c -m 555 -o bin -g bin
|
|
-INSTALL_MAN = install -c -m 444 -o bin -g bin
|
|
+#PREFIX = /usr/local
|
|
+#INSTALL_PROGRAM = install -c -m 555 -o bin -g bin
|
|
+#INSTALL_MAN = install -c -m 444 -o bin -g bin
|
|
|
|
# Some make's don't define this.
|
|
-RM = rm -f
|
|
+#RM = rm -f
|
|
|
|
# Should be OK for GNU gcc.
|
|
-CC = gcc
|
|
-CFLAGS = -O2 -Wall
|
|
-LDFLAGS = -s
|
|
+#CC = gcc
|
|
+#CFLAGS = -O2 -Wall
|
|
+#LDFLAGS = -s
|
|
|
|
# For using BIND resolver instead of system resolver.
|
|
#LIBS += -lresolv # Really old Linux has this.
|
|
@@ -103,7 +103,7 @@ clobber dist-clean: clean
|
|
$(RM) tproxy
|
|
|
|
install: tproxy
|
|
- $(INSTALL_PROGRAM) tproxy $(PREFIX)/sbin
|
|
- $(INSTALL_PROGRAM) tproxyrun $(PREFIX)/sbin
|
|
- $(INSTALL_PROGRAM) tproxywatch $(PREFIX)/sbin
|
|
- $(INSTALL_MAN) tproxy.8 $(PREFIX)/man/man8
|
|
+ $(BSD_INSTALL_PROGRAM) tproxy $(DESTDIR)/$(PREFIX)/sbin
|
|
+ $(BSD_INSTALL_SCRIPT) tproxyrun $(DESTDIR)$(PREFIX)/sbin
|
|
+ $(BSD_INSTALL_SCRIPT) tproxywatch $(DESTDIR)$(PREFIX)/sbin
|
|
+ $(BSD_INSTALL_MAN) tproxy.8 $(DESTDIR)/$(PREFIX)/share/man/man8
|