From e08536f1d89384f1cda546202bac60d57fc8aba7 Mon Sep 17 00:00:00 2001 From: nsz Date: Tue, 10 Apr 2012 11:43:40 +0200 Subject: [PATCH] config.mak change should imply recompile (dependency in makefile) --- Makefile.inc | 4 ++-- README | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.inc b/Makefile.inc index fa84a1b..05d8689 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -12,7 +12,7 @@ RANLIB=ranlib CFLAGS += -g -D_POSIX_C_SOURCE=200809L -D_GNU_SOURCE -std=c99 -pipe -Wall -Wno-unused-function -Wno-missing-braces LDFLAGS += -g -lpthread -lrt -lm --include $(TROOT)/config.mak +include $(TROOT)/config.mak CFLAGS += -I$(TROOT)/common @@ -27,7 +27,7 @@ clean: .c.o: $(CC) $(CFLAGS) -c -o $@ $< -$(OBJS): $(TROOT)/common/test.h +$(OBJS): $(TROOT)/common/test.h $(TROOT)/config.mak tests.h: $(OBJS) nm -f posix $+ |awk ' \ diff --git a/README b/README index 5fc8bb3..ce2ba8e 100644 --- a/README +++ b/README @@ -7,7 +7,7 @@ build tests: # edit config.mak make run tests: - make + make t run benchmarks: make b -- 2.20.1