Add 'CAN-binder/libs/nanopb/' from commit '278ffb890e3d8722e4c7d824baaf221a1e375fc4'
[apps/agl-service-can-low-level.git] / CAN-binder / libs / nanopb / examples / using_union_messages / Makefile
1 # Include the nanopb provided Makefile rules
2 include ../../extra/nanopb.mk
3
4 # Compiler flags to enable all warnings & debug info
5 CFLAGS = -ansi -Wall -Werror -g -O0
6 CFLAGS += -I$(NANOPB_DIR)
7
8 all: encode decode
9         ./encode 1 | ./decode
10         ./encode 2 | ./decode
11         ./encode 3 | ./decode
12
13 .SUFFIXES:
14
15 clean:
16         rm -f encode unionproto.pb.h unionproto.pb.c
17
18 %: %.c unionproto.pb.c
19         $(CC) $(CFLAGS) -o $@ $^ $(NANOPB_CORE)
20