From b49ce08cea9226c59a23909edd1464f8145c9e51 Mon Sep 17 00:00:00 2001 From: Igor Machado Date: Wed, 29 May 2024 03:48:48 +0000 Subject: [PATCH] fix kp build makefile --- Examples/KP/makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Examples/KP/makefile b/Examples/KP/makefile index c75bd551..a3dcc06d 100644 --- a/Examples/KP/makefile +++ b/Examples/KP/makefile @@ -15,6 +15,7 @@ build/app_Example: $(OBJ_FILES) # compile each .cpp individually ($<) $(OBJ_DIR)/%.o: $(SRC_DIR)/%.cpp + mkdir -p build/ $(CC) $(CXXFLAGS) -c -o $@ $< .PHONY: all clean