mirror of
https://github.com/logos-messaging/logos-messaging-simulator.git
synced 2026-01-03 14:33:06 +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)
|