8 lines
No EOL
244 B
Makefile
8 lines
No EOL
244 B
Makefile
clean:
|
|
if [ -d build ]; then rm -rf build; fi
|
|
|
|
build:
|
|
ncc build --build-configuration release --log-level debug
|
|
|
|
install:
|
|
sudo ncc package install -p "build/release/net.nosial.keybert.ncc" --reinstall --skip-dependencies --log-level debug -y
|