summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 79d4062..c4c9a98 100644
--- a/Makefile
+++ b/Makefile
@@ -2,8 +2,8 @@
default: fastback
fastback: fastback.o
- g++ -o $@ $<
+ g++ -o $@ $$(curl-config --libs) $<
fastback.o: fastback.cpp
- g++ -c -o $@ $<
+ g++ -c -o $$(curl-config --cflags) $@ $<