hurl

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 64cc365aabf090ea98df3b4d450fd176fe1ea9ff
parent b5f4e541411a8ecb3074b2395a12e4d40f9eff15
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Sat,  9 Nov 2019 23:11:35 +0100

Makefile: remove hardcoded paths

Diffstat:
MMakefile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -9,8 +9,8 @@ PREFIX = /usr/local BINDIR = ${PREFIX}/bin MANDIR = ${PREFIX}/man/man1 -HURL_CFLAGS = -I. -I/usr/include ${CFLAGS} -HURL_LDFLAGS = -L/usr/lib -L. -ltls ${LDFLAGS} +HURL_CFLAGS = ${CFLAGS} +HURL_LDFLAGS = -ltls ${LDFLAGS} SRC = hurl.c OBJ = ${SRC:.c=.o}