make multiprocessing

This commit is contained in:
elvis
2022-04-25 21:56:13 +02:00
parent e67d3b5580
commit 5151418090
2 changed files with 5 additions and 3 deletions

View File

@ -25,10 +25,12 @@ VPATH := $(SRC_DIR) $(wildcard $(LIB_DIR)/*)
.DEFAULT_GOAL := all
.PHONY: all clean cleanall
.PHONY: all multi clean cleanall
all:
@$(MAKE) -s -j multi
all: $(BUILD_DIR)/server $(BUILD_DIR)/client
multi: $(BUILD_DIR)/server $(BUILD_DIR)/client
@echo "Compiled!"