summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2014-07-11 13:36:16 -0700
committerFranck Cuny <franck.cuny@gmail.com>2014-07-12 12:18:22 -0700
commit4f12e95cb18e39dc931d493cac8032dd43f25e62 (patch)
treee1fd20b4db56de320ef59109dbfb2b3c336404a5 /Makefile
parentignore the bin (diff)
downloadstatsd-proxy-4f12e95cb18e39dc931d493cac8032dd43f25e62.tar.gz
initial import
Diffstat (limited to '')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..d45cee3
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+PROJECT = statsd-proxy
+OPTIMIZE = -O3
+CFLAGS += -Wall -Wextra
+
+all: ${PROJECT}
+
+${PROJECT}: statsd-proxy.c
+
+clean:
+ rm -f ${PROJECT} *.o