summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2009-07-03 00:27:05 -0700
committerJoshua Haberman <joshua@reverberate.org>2009-07-03 00:27:05 -0700
commit9eaab71e99b1fedd8b2a29a99b8512b01719469a (patch)
tree40cc85f8d662377b043079d9ba295e71ce44fa3c /Makefile
parent485b96466257a972042b49f45cb79bc0d1093748 (diff)
Fixed bugs and memory leaks.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7a98b7e..ced605c 100644
--- a/Makefile
+++ b/Makefile
@@ -3,11 +3,11 @@
CC=gcc
CXX=g++
CFLAGS=-std=c99
-CPPFLAGS=-Wall -Wextra -pedantic -g -DUPB_UNALIGNED_READS_OK -fomit-frame-pointer
+CPPFLAGS=-O0 -Wall -Wextra -pedantic -g -DUPB_UNALIGNED_READS_OK -fomit-frame-pointer
OBJ=upb_parse.o upb_table.o upb_msg.o upb_context.o descriptor.o
all: $(OBJ) test_table tests
clean:
- rm -f $(OBJ) tests
+ rm -f *.o test_table tests
libupb.a: $(OBJ)
ar rcs libupb.a $(OBJ)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback