From c22f6eeffc1fa1526365abac82ef149e5f901c42 Mon Sep 17 00:00:00 2001 From: bsp2 Date: Fri, 12 Oct 2018 17:09:17 +0200 Subject: [PATCH] add 'dep' and 'all' targets --- makefile.linux | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/makefile.linux b/makefile.linux index 403c8048..e76ceb77 100644 --- a/makefile.linux +++ b/makefile.linux @@ -3,8 +3,9 @@ # # -#NUM_JOBS=20 -NUM_JOBS=1 +NUM_JOBS=20 +#NUM_JOBS=1 +#NUM_JOBS=$(NUM_PROCESSORS) .PHONY: bin bin: vst @@ -35,3 +36,21 @@ clean: make -f makefile_vst_instr.linux clean make -f makefile_vst_effect.linux clean +# rebuild dependencies: +.PHONY: dep +dep: + make -C dep -f makefile.linux clean + make -C dep -f makefile.linux bin + +# do a complete rebuild: +.PHONY: all +all: + make -C dep -f makefile.linux clean + make -C dep -f makefile.linux bin + make -f makefile.linux clean + make -f makefile.linux shared_lib + make -C plugins -f makefile.linux clean + make -C plugins -f makefile.linux bin + make -f makefile.linux clean + make -f makefile.linux lib + make -f makefile.linux bin