Introduction
Introduction Statistics Contact Development Disclaimer Help
Makefile: remove hardcoded paths - hurl - Gopher/HTTP/HTTPS file grabber
git clone git://git.codemadness.org/hurl
Log
Files
Refs
README
LICENSE
---
commit 64cc365aabf090ea98df3b4d450fd176fe1ea9ff
parent b5f4e541411a8ecb3074b2395a12e4d40f9eff15
Author: Hiltjo Posthuma <[email protected]>
Date: Sat, 9 Nov 2019 23:11:35 +0100
Makefile: remove hardcoded paths
Diffstat:
M Makefile | 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}
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.