Nova/exes/all/Makefile
2023-01-03 20:14:54 +04:00

15 lines
195 B
Makefile

clean:
rm ./build/*
library:
cargo build --release
build: library
cp ../../target/release/liball.a ./build
go build -a -ldflags '-s' -o build/all
all: library build
run: all
./build/all