From e0afb407840490bd2edd8b70858307824d87b243 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Sat, 21 Sep 2019 03:47:26 +0200 Subject: only search for Makefiles in src/ --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2fdb2da..9f0f1cb 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -MAKEFILES = $(shell dirname $(shell find . -name Makefile ! -path ./Makefile ! -path "./build/*")) -CMAKELISTS = $(shell dirname $(shell find . -name CMakeLists.txt ! -path "./build/*")) +MAKEFILES = $(shell dirname $(shell find src/ -name Makefile)) +CMAKELISTS = $(shell dirname $(shell find src/ -name CMakeLists.txt)) OBJDIR = $(PWD)/build -- cgit v1.2.3