Update Makefile to be compatible with CLion

This commit is contained in:
Maschell 2023-01-02 15:48:00 +01:00
parent 663e3e513d
commit d3a65723bc
1 changed files with 1 additions and 1 deletions

View File

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