mirror of
https://github.com/number571/go-peer.git
synced 2026-09-12 19:50:00 +05:00
9 lines
159 B
Makefile
9 lines
159 B
Makefile
GC=go build
|
|
.PHONY: default run clean
|
|
default: clean run
|
|
run:
|
|
./prog_hle_2 -priv=priv.key &
|
|
clean:
|
|
pkill -15 prog_hle_2 || true
|
|
rm -rf prog_hle_2 main.py
|