1# Include the nanopb provided Makefile rules 2include ../../extra/nanopb.mk 3 4# Compiler flags to enable all warnings & debug info 5CFLAGS = -Wall -Werror -g -O0 6CFLAGS += -I$(NANOPB_DIR) 7 8all: run_tests 9 10.SUFFIXES: 11 12clean: 13 rm -f test_conversions encode_double decode_double doubleproto.pb.c doubleproto.pb.h 14 15test_conversions: test_conversions.c double_conversion.c 16 $(CC) $(CFLAGS) -o $@ $^ 17 18%: %.c double_conversion.c doubleproto.pb.c 19 $(CC) $(CFLAGS) -o $@ $^ $(NANOPB_CORE) 20 21run_tests: test_conversions encode_double decode_double 22 ./test_conversions 23 ./encode_double | ./decode_double 24 25