mirror of
https://github.com/logos-messaging/logos-messaging-simulator.git
synced 2026-03-29 16:03:13 +00:00
8 lines
91 B
Makefile
8 lines
91 B
Makefile
BIN_DIR = bin/
|
|
CLI = bin/wakusim
|
|
|
|
build:
|
|
go build -o $(CLI) main.go
|
|
|
|
clean:
|
|
rm -rf $(CLI)
|