1 # You can put your build options here
10 $(CC) -c $(CFLAGS) $< -o $@
15 jsmn_test: jsmn_test.o
16 $(CC) $(LDFLAGS) -L. -ljsmn $< -o $@
18 jsmn_test.o: jsmn_test.c libjsmn.a
20 simple_example: example/simple.o libjsmn.a
21 $(CC) $(LDFLAGS) $^ -o $@
23 jsondump: example/jsondump.o libjsmn.a
24 $(CC) $(LDFLAGS) $^ -o $@
27 rm -f jsmn.o jsmn_test.o example/simple.o
34 .PHONY: all clean test