diff options
author | June McEnroe <june@causal.agency> | 2019-09-05 02:39:41 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-09-05 02:39:41 -0400 |
commit | 72c34c298ea65c3b4c495d563fa43427602d17ea (patch) | |
tree | ec5bdce73bb79e976cb0c999fdffbbdae601a0ca /bin/Makefile | |
parent | Add title (diff) | |
download | src-72c34c298ea65c3b4c495d563fa43427602d17ea.tar.gz src-72c34c298ea65c3b4c495d563fa43427602d17ea.zip |
Use CURL_PREFIX to set flags
Diffstat (limited to 'bin/Makefile')
-rw-r--r-- | bin/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/Makefile b/bin/Makefile index 1b038ea6..a07eb956 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -4,6 +4,11 @@ MANDIR = ${PREFIX}/share/man CFLAGS += -Wall -Wextra -Wpedantic LDLIBS = -lm -lutil -lz +CURL_PREFIX = /usr/local +CFLAGS_curl = ${CFLAGS} -I${CURL_PREFIX}/include +LDFLAGS_curl = ${LDFLAGS} -L${CURL_PREFIX}/lib +LDLIBS_curl = ${LDLIBS} -lcurl + LIBRESSL_PREFIX = /usr/local CFLAGS_tls = ${CFLAGS} -I${LIBRESSL_PREFIX}/include LDFLAGS_tls = ${LDFLAGS} -L${LIBRESSL_PREFIX}/lib @@ -79,7 +84,7 @@ relay: relay.c ${CC} ${CFLAGS_tls} ${LDFLAGS_tls} $@.c ${LDLIBS_tls} -o $@ title: title.c - ${CC} ${CFLAGS} ${LDFLAGS} $@.c ${LDLIBS} -lcurl -o $@ + ${CC} ${CFLAGS_curl} ${LDFLAGS_curl} $@.c ${LDLIBS_curl} -o $@ # Headers |