1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00
freebsd-ports/net/freenet6/files/patch-src-Makefile
Edwin Groothuis 5bc48ebfaa upgrade to version 1.0
PR:		ports/58418
Submitted by:	Volker Stolz <stolz@i2.informatik.rwth-aachen.de>
2003-10-25 12:06:30 +00:00

25 lines
737 B
Plaintext

--- src/Makefile.orig Mon Aug 11 17:18:21 2003
+++ src/Makefile Thu Oct 23 11:12:02 2003
@@ -11,7 +11,7 @@
INC=.
BIN=../bin
-CC=gcc -g -I$(INC) -Wall
+CC+=$(CFLAGS) -g -I$(INC) -Wall
all: tspc tspc.conf.sample
@@ -19,9 +19,9 @@
@echo Installing tspc
mkdir -p $(install_bin)
$(COPY) $(BIN)/$(TSPC) $(install_bin)/$(TSPC)
- $(COPY) $(BIN)/tspc.conf.sample $(install_bin)/tspc.conf.sample
- @if [ ! -e "$(install_bin)/tspc.conf" ]; then \
- $(COPY) $(BIN)/tspc.conf.sample $(install_bin)/tspc.conf; \
+ $(COPY) $(BIN)/tspc.conf.sample $(install_etc)/tspc.conf.sample
+ @if [ ! -e "$(install_etc)/tspc.conf" ]; then \
+ $(COPY) $(BIN)/tspc.conf.sample $(install_etc)/tspc.conf; \
fi
@echo End of tspc installation