From 4d9c39b94d498e8a3ad2fb4966833092579ed038 Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Thu, 9 Jul 2009 11:10:16 -0700 Subject: Make benchmark run out-of-the-box. --- Makefile | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e79630b..f08c846 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,11 @@ CC=gcc CXX=g++ CFLAGS=-std=c99 -CPPFLAGS=-O3 -Wall -Wextra -pedantic -g -DUPB_UNALIGNED_READS_OK -fomit-frame-pointer -Idescriptor -Isrc +CPPFLAGS=-O3 -Wall -Wextra -pedantic -g -DUPB_UNALIGNED_READS_OK -fomit-frame-pointer -Idescriptor -Isrc -Itests 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 -ALL=$(OBJ) src/libupb.a tests/test_table tests/tests tools/upbc +SRC=src/*.c src/*.h descriptor/*.c descriptor/*.h tests/*.c tests/*.h tools/*.c tools/*.h +ALL=$(OBJ) src/libupb.a tests/test_table tests/tests tools/upbc benchmark/benchmark all: $(ALL) clean: rm -f $(ALL) deps @@ -15,8 +16,10 @@ src/libupb.a: $(OBJ) ar rcs src/libupb.a $(OBJ) tests/test_table: src/libupb.a tools/upbc: src/libupb.a -benchmark/benchmark: src/libupb.a -lm +benchmark/benchmark: src/libupb.a benchmark/google_messages.pb.h -lm +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/*.c src/*.h descriptor/*.c descriptor/*.h tests/*.c tests/*.h tools/*.c tools/*.h - gcc -MM *.c > deps +deps: $(SRC) + gcc -MM $(SRC) > deps -- cgit v1.2.3