From b76071f55afbc307d8922b195cbc8f5eaa8a773d Mon Sep 17 00:00:00 2001 From: Szabolcs Nagy Date: Thu, 1 Aug 2013 23:36:58 +0000 Subject: [PATCH] fix local makefiles to make it possible to rebuild binaries --- src/api/Makefile | 4 ++-- src/common/Makefile | 4 ++-- src/functional/Makefile | 4 ++-- src/math/Makefile | 4 ++-- src/regression/Makefile | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/api/Makefile b/src/api/Makefile index c56d353..0611406 100644 --- a/src/api/Makefile +++ b/src/api/Makefile @@ -1,5 +1,5 @@ all: -%: +%: FORCE $(MAKE) -C ../.. B=src src/api/$@ .SUFFIXES: - +FORCE: ; diff --git a/src/common/Makefile b/src/common/Makefile index c4026cc..165b25e 100644 --- a/src/common/Makefile +++ b/src/common/Makefile @@ -1,5 +1,5 @@ all: -%: +%: FORCE $(MAKE) -C ../.. B=src src/common/$@ .SUFFIXES: - +FORCE: ; diff --git a/src/functional/Makefile b/src/functional/Makefile index 31ce38d..227a0b9 100644 --- a/src/functional/Makefile +++ b/src/functional/Makefile @@ -1,5 +1,5 @@ all: -%: +%: FORCE $(MAKE) -C ../.. B=src src/functional/$@ .SUFFIXES: - +FORCE: ; diff --git a/src/math/Makefile b/src/math/Makefile index 998b7f4..d7070b0 100644 --- a/src/math/Makefile +++ b/src/math/Makefile @@ -1,5 +1,5 @@ all: -%: +%: FORCE $(MAKE) -C ../.. B=src src/math/$@ .SUFFIXES: - +FORCE: ; diff --git a/src/regression/Makefile b/src/regression/Makefile index 8f5d911..4b3307a 100644 --- a/src/regression/Makefile +++ b/src/regression/Makefile @@ -1,5 +1,5 @@ all: -%: +%: FORCE $(MAKE) -C ../.. B=src src/regression/$@ .SUFFIXES: - +FORCE: ; -- 2.20.1