summaryrefslogtreecommitdiff
path: root/samples/libcurl/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'samples/libcurl/Makefile')
-rw-r--r--samples/libcurl/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/samples/libcurl/Makefile b/samples/libcurl/Makefile
new file mode 100644
index 0000000..35b4597
--- /dev/null
+++ b/samples/libcurl/Makefile
@@ -0,0 +1,9 @@
+
+
+all: curlget
+
+curlget: curlget.c
+ gcc curlget.c -o curlget -Wall -lcurl -std=c99 $(shell pkg-config --libs libproxy-1.0)
+
+clean:
+ rm curlget