mirror of
https://github.com/logos-messaging/logos-messaging-simulator.git
synced 2026-01-08 00:43:09 +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)
|