Make check target work

This commit is contained in:
Sasha Koshka 2024-12-11 02:42:14 -05:00
parent 5ba3dfd26f
commit 09fa576873

View File

@ -16,7 +16,7 @@ build/%: $(SRCS)
$(GO) build $(GOFLAGS) -o $@ ./cmd/$(shell basename $@)
check:
$(GO) test $(GOFLAGS)
$(GO) test $(GOFLAGS) ...
clean:
rm -rf build