diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2014-01-01 11:20:07 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2014-01-01 11:20:54 +0200 |
commit | 4546bb92dc332ebbfb05a7517028f967b0657725 (patch) | |
tree | 164aa1d8fb04779b4d5906f00ae5d89226a3b3f7 /examples/using_double_on_avr | |
parent | 18e71bbfe2907fa759fad09e8c5c13655e33a590 (diff) |
Fix Makefiles for the examples
The default rules for make were being selected before our own rules
and the .pb.c was not being built.
Diffstat (limited to 'examples/using_double_on_avr')
-rw-r--r-- | examples/using_double_on_avr/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/using_double_on_avr/Makefile b/examples/using_double_on_avr/Makefile index 6f2203ae..874a64bd 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 |