blob: bc1791604f68fd45535904969726684e8104a131 [file] [log] [blame]
Carsten Bormann64e2b522015-02-17 18:52:34 +01001all: size test
2 env MallocStackLogging=true ./test >new.out
3 -diff new.out expected.out
4
5test: test.c cbor.h cn-cbor.h cn-cbor.c
6 clang cn-cbor.c test.c -o test
7
8size: cn-cbor.o
9 size cn-cbor.o
10 size -m cn-cbor.o
11
12cn-cbor.o: cn-cbor.c cn-cbor.h cbor.h
13 clang -I /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/usr/include -arch armv7 -Os -c cn-cbor.c
14
15cn-cbor-play.zip: Makefile cbor.h cn-cbor.c cn-cbor.h expected.out test.c
16 zip $@ $^