1
0
mirror of https://github.com/0O0o0oOoO00/Alas.git synced 2026-05-14 12:49:25 +08:00
Files
Alas/Makefile
2024-05-16 15:50:37 +08:00

16 lines
209 B
Makefile

.PHONY: clean pack
RM = -rmdir /S /Q
CMAKE = cmake
all: clean pack
pack:
$(CMAKE) -B build
$(CMAKE) --install build
$(CMAKE) --build build --target package
clean:
$(RM) build
$(RM) pack
$(RM) install