From: Szabolcs Nagy Date: Thu, 1 Aug 2013 23:36:58 +0000 (+0000) Subject: fix local makefiles to make it possible to rebuild binaries X-Git-Url: http://nsz.repo.hu/git/?p=libc-test;a=commitdiff_plain;h=b76071f55afbc307d8922b195cbc8f5eaa8a773d fix local makefiles to make it possible to rebuild binaries --- 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: ;