mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
eb11b51ed9
It lastet so long, because of personal time constraints and based on the fact, that I had to do the very time consuming task, to revamp the whole big brother installation heavily. This could be avoided, if Sean could provide a Makefile with a real install: target and not the drainbamaged "unpack, compile and let the whole sh**^H^H^H^Hbunch remain here(tm)" philosophy." (me lucky one, that apsfilter has changed about 1-2 years ago ;-) - make install target now copies the workdir to ${PREFIX}/bb and then moves or removes files and directories as needed - revamped client configuration and introduced a ${PREFIX}/share/bb/bbclients directory. Hope you like it this way ;-)
21 lines
457 B
Plaintext
21 lines
457 B
Plaintext
--- src/Makefile.freebsd.orig Sun Jun 27 12:02:36 1999
|
|
+++ src/Makefile.freebsd Sun Jun 27 12:03:08 1999
|
|
@@ -1,6 +1,6 @@
|
|
SHELL = /bin/sh
|
|
-MAKE = make
|
|
-CC = gcc
|
|
+MAKE ?= make
|
|
+CC ?= gcc
|
|
|
|
# FLAGS REQUIRED FOR PORTING
|
|
# SUNOS 4.1.4, HPUX 10.0, and LINUX NEED NOTHING DEFINED
|
|
@@ -13,7 +13,7 @@
|
|
#LIBS = -ll -lnsl -lsocket # SOLARIS NEEDS THIS
|
|
|
|
# FREEBSD NEEDS SPECIAL ZOMBIE HANDLING
|
|
-CFLAGS=-DZOMBIE -O
|
|
+CFLAGS+=-DZOMBIE
|
|
|
|
all: bb bbd bbnet touchtime
|
|
|