mirror of
https://github.com/0O0o0oOoO00/Alas.git
synced 2026-05-21 16:59:28 +08:00
17 lines
233 B
Makefile
17 lines
233 B
Makefile
.PHONY: clean pack
|
|
|
|
RM = -rmdir /S /Q
|
|
CMAKE = cmake
|
|
|
|
all: clean pack
|
|
|
|
pack:
|
|
$(CMAKE) -B build
|
|
$(CMAKE) --build build
|
|
$(CMAKE) --install build
|
|
$(CMAKE) --build build --target package
|
|
|
|
clean:
|
|
$(RM) build
|
|
$(RM) pack
|
|
$(RM) install
|