From a0ad379b9549c81be49e2206c0b7f434007e9b9f Mon Sep 17 00:00:00 2001 From: Maschell Date: Wed, 5 Oct 2022 18:43:11 +0200 Subject: [PATCH] Update Makefile to be compatible with CLion --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3f582e9..0479e44 100644 --- a/Makefile +++ b/Makefile @@ -110,7 +110,7 @@ export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) all: $(BUILD) $(BUILD): - @[ -d $@ ] || mkdir -p $@ + @$(shell [ ! -d $(BUILD) ] && mkdir -p $(BUILD)) @$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile #-------------------------------------------------------------------------------