feat: Add Make file

This commit is contained in:
coderloff 2024-04-11 17:37:03 +04:00
parent 401e4e5a54
commit 65e4d52ad7

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
BUILD_DIR = build
all: build
build:
cmake -S ./ -B $(BUILD_DIR)
cd $(BUILD_DIR) && make
clean:
rm -rf $(BUILD_DIR)