From 2214713dda0b3648cd05d91b018f3eb4cb9a0342 Mon Sep 17 00:00:00 2001 From: Rishi Desai Date: Fri, 4 Dec 2020 11:24:49 -0600 Subject: [PATCH] Updated Makefile to use MAKE command from parent (#3) --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 9997809b6..63738ef74 100644 --- a/Makefile +++ b/Makefile @@ -1,18 +1,18 @@ -nproc=$(shell python3 -c 'import multiprocessing; print( max(multiprocessing.cpu_count() - 1, 1))') +#nproc=$(shell python3 -c 'import multiprocessing; print( max(multiprocessing.cpu_count() - 1, 1))') CXX := clang++-10 CC := clang-10 .PHONY: plugin.dbg.so plugin.dbg.so: build/Debug/Makefile - make -C build/Debug "-j$(nproc)" && \ + ${MAKE} -C build/Debug && \ rm -f $@ && \ ln -s build/Debug/libplugin.so plugin.dbg.so && \ true .PHONY: plugin.opt.so plugin.opt.so: build/Release/Makefile - make -C build/Release "-j$(nproc)" && \ + ${MAKE} -C build/Release && \ rm -f $@ && \ ln -s build/Release/libplugin.so plugin.opt.so && \ true