1
0
textfmt/Makefile
2025-09-11 21:16:09 +02:00

10 lines
109 B
Makefile

SOURCES = $(shell find . -name "*.go")
default: build
build: $(SOURCES)
go build
fmt: $(SOURCES)
go fmt