mirror of
https://github.com/number571/go-peer.git
synced 2026-09-14 11:05:42 +05:00
9 lines
144 B
Makefile
9 lines
144 B
Makefile
GC=go build
|
|
.PHONY: default run clean
|
|
default: clean run
|
|
run:
|
|
./prog_hle_1 &
|
|
clean:
|
|
pkill -15 prog_hle_1 || true
|
|
rm -rf prog_hle_1 main.py
|