Makefile no longer needed
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 68e59ce..0000000
--- a/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-# enable this for armv7 builds, lazily using iPhone SDK
-#CFLAGS = -I /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/usr/include -arch armv7 -Os
-CFLAGS = -Os -Wall -Wextra -Wno-unknown-pragmas -Werror-implicit-function-declaration -Werror -Wno-unused-parameter -Wdeclaration-after-statement -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes
-
-all: cntest
-
-test: cntest
-	env MallocStackLogging=true ./cntest >new.out
-	-diff new.out expected.out
-
-cntest: cbor.h cn-cbor.h cn-cbor.c cn-error.c cn-get.c test.c
-	clang $(CFLAGS) cn-cbor.c cn-error.c cn-get.c test.c -o cntest
-
-size: cn-cbor.o
-	size cn-cbor.o
-	size -m cn-cbor.o
-
-cn-cbor.o: cn-cbor.c cn-cbor.h cbor.h
-	clang $(CFLAGS) -c cn-cbor.c
-
-cn-cbor-play.zip: Makefile cbor.h cn-cbor.c cn-cbor.h expected.out test.c
-	zip $@ $^
-
-clean:
-	$(RM) cntest *.o new.out