mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
6fbbcdadb6
Signed-off-by: Russ Magee <rmagee@gmail.com>
12 lines
147 B
Makefile
12 lines
147 B
Makefile
.PHONY: clean all lint
|
|
|
|
EXE = $(notdir $(shell pwd))
|
|
|
|
all:
|
|
go build .
|
|
|
|
clean:
|
|
$(RM) $(EXE) $(EXE).exe
|
|
|
|
lint:
|
|
gometalinter --deadline 60s | sort
|