stun

simple point to point tunnel
git clone git://git.2f30.org/stun
Log | Files | Refs | README

commit 6d1cedb2257dce3febf1730139d7d30a569369f6
parent 855143b5710a7bd982d499d2a18675f57e35ac12
Author: sin <sin@2f30.org>
Date:   Fri,  8 Apr 2016 16:41:34 +0100

adjust config.mk again

Diffstat:
Mconfig.mk | 15++++++---------
1 file changed, 6 insertions(+), 9 deletions(-)

diff --git a/config.mk b/config.mk @@ -3,17 +3,14 @@ VERSION = 0.1 PREFIX = /usr/local MANPREFIX = $(PREFIX)/man -CRYPTOINC = /usr/local/include -CRYPTOLIB = /usr/local/lib - -INCS = -I$(CRYPTOINC) -LIBS = -L$(CRYPTOLIB) -lcrypto +INC = /usr/local/include +LIB = /usr/local/lib # BSD -CFLAGS = -std=c99 -Wall $(INCS) -LDLIBS = $(LIBS) +CFLAGS = -std=c99 -Wall -I$(INC) +LDLIBS = -L$(LIB) -lcrypto # Linux -#CFLAGS = -std=c99 -Wall $(INCS) +#CFLAGS = -std=c99 -Wall -I$(INC) #CPPFLAGS = -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_BSD_SOURCE -D_GNU_SOURCE -#LDLIBS = $(LIBS) -lbsd +#LDLIBS = -L$(LIB) -lcrypto -lbsd