Update Makefile to be compatible with CLion

This commit is contained in:
Maschell 2023-01-07 16:09:11 +01:00
parent fe9c74708d
commit 40688d9275
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,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
#-------------------------------------------------------------------------------