11 lines
79 B
Makefile
11 lines
79 B
Makefile
all: adsb-ws
|
|
|
|
adsb-ws: *.go
|
|
go build
|
|
|
|
clean:
|
|
rm -f adsb-ws
|
|
|
|
fmt:
|
|
gofmt -w .
|