diff options
-rw-r--r-- | examples/network_server/Makefile | 2 | ||||
-rw-r--r-- | examples/using_double_on_avr/Makefile | 2 | ||||
-rw-r--r-- | examples/using_union_messages/Makefile | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/examples/network_server/Makefile b/examples/network_server/Makefile index 3c01400..2c7639a 100644 --- a/examples/network_server/Makefile +++ b/examples/network_server/Makefile @@ -7,6 +7,8 @@ CFLAGS += -I$(NANOPB_DIR) all: server client +.SUFFIXES: + clean: rm -f server client fileproto.pb.c fileproto.pb.h diff --git a/examples/using_double_on_avr/Makefile b/examples/using_double_on_avr/Makefile index 6f2203a..874a64b 100644 --- a/examples/using_double_on_avr/Makefile +++ b/examples/using_double_on_avr/Makefile @@ -7,6 +7,8 @@ CFLAGS += -I$(NANOPB_DIR) all: run_tests +.SUFFIXES: + clean: rm -f test_conversions encode_double decode_double doubleproto.pb.c doubleproto.pb.h diff --git a/examples/using_union_messages/Makefile b/examples/using_union_messages/Makefile index 618bca5..66396a0 100644 --- a/examples/using_union_messages/Makefile +++ b/examples/using_union_messages/Makefile @@ -10,6 +10,8 @@ all: encode decode ./encode 2 | ./decode ./encode 3 | ./decode +.SUFFIXES: + clean: rm -f encode unionproto.pb.h unionproto.pb.c |