From 9eaab71e99b1fedd8b2a29a99b8512b01719469a Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Fri, 3 Jul 2009 00:27:05 -0700 Subject: Fixed bugs and memory leaks. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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) -- cgit v1.2.3