aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2012-09-02 19:54:35 +0300
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2012-09-02 19:54:35 +0300
commitf187aad63db2ff8e1a82508f4a43988b43e10f54 (patch)
treef96a9fd999fb178a815d6d73d581d618896f064b /tests
parenta06dba6e49a7fc5fbc1e476539566e3f407be908 (diff)
Fix -Wextra warning in generated .pb.c files.
Compile the generated files with the same extra-strict settings as the core, in order to detect problems in tests. Update issue 32 Status: FixedInGit
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 3810c95..e4c67c5 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -11,6 +11,9 @@ all: breakpoints $(TESTS) run_unittests
clean:
rm -f $(TESTS) person.pb* alltypes.pb* *.o *.gcda *.gcno
+%.pb.o: %.pb.c %.pb.h
+ $(CC) $(CFLAGS) $(CFLAGS_CORE) -c -o $@ $<
+
%.o: %.c
%.o: %.c $(DEPS)
$(CC) $(CFLAGS) -c -o $@ $<