From a1a9596d02f5297d60448edac994c2bcb56edc4a Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Tue, 21 Jul 2009 17:36:02 -0700 Subject: Fix tests and the build (though a few tests are failing). --- Makefile | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3d4642d..2ee0ff6 100644 --- a/Makefile +++ b/Makefile @@ -3,14 +3,15 @@ CC=gcc CXX=g++ CFLAGS=-std=c99 -CPPFLAGS=-O0 -Wall -Wextra -pedantic -g -DUPB_UNALIGNED_READS_OK -DNDEBUG -Idescriptor -Isrc -Itests -I. +INCLUDE=-Idescriptor -Isrc -Itests -I. +CPPFLAGS=-O3 -fomit-frame-pointer -Wall -Wextra -g -DUPB_UNALIGNED_READS_OK -DNDEBUG $(INCLUDE) OBJ=src/upb_parse.o src/upb_table.o src/upb_msg.o src/upb_enum.o src/upb_context.o \ - src/upb_string.o descriptor/descriptor.o -SRC=src/*.c src/*.h descriptor/*.c descriptor/*.h tests/*.c tests/*.h tools/*.c tools/*.h + src/upb_string.o src/upb_text.o descriptor/descriptor.o +SRC=src/*.c src/*.h descriptor/*.c descriptor/*.h tests/*.c tests/*.h tools/*.c ALL=$(OBJ) src/libupb.a tests/test_table tests/tests tools/upbc benchmark/benchmark all: $(ALL) clean: - rm -f $(ALL) deps benchmark/google_messages.proto.pb benchmark/google_messages.pb.* + rm -f $(ALL) benchmark/google_messages.proto.pb benchmark/google_messages.pb.* src/libupb.a: $(OBJ) ar rcs src/libupb.a $(OBJ) @@ -18,9 +19,5 @@ tests/test_table: src/libupb.a tools/upbc: src/libupb.a benchmark/benchmark: src/libupb.a benchmark/google_messages.pb.h benchmark/google_messages.pb.o benchmark/benchmark.o $(CXX) $(CPPFLAGS) -o benchmark/benchmark benchmark/google_messages.pb.o benchmark/benchmark.cc src/libupb.a -lm -lprotobuf -lpthread -benchmark/google_messages.pb.h benchmark/google_messages.pb: benchmark/google_messages.proto +benchmark/google_messages.pb.cc benchmark/google_messages.pb.h benchmark/google_messages.pb: benchmark/google_messages.proto protoc benchmark/google_messages.proto --cpp_out=. -obenchmark/google_messages.proto.pb - --include deps -deps: $(SRC) - gcc -MM $(SRC) > deps -- cgit v1.2.3