3c0140097d317420c8948c3f47ec5c1b3200d1c5
[apps/agl-service-can-low-level.git] / examples / network_server / 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: server client
9
10 clean:
11         rm -f server client fileproto.pb.c fileproto.pb.h
12
13 %: %.c common.c fileproto.pb.c
14         $(CC) $(CFLAGS) -o $@ $^ $(NANOPB_CORE)
15