Update Makefile to be compatible with CLion

This commit is contained in:
Maschell 2024-04-24 19:43:48 +02:00
parent f0a7015033
commit 90f2bfe6db
1 changed files with 1 additions and 1 deletions

View File

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