1
0
textfmt/Makefile

10 lines
109 B
Makefile
Raw Normal View History

2025-09-11 21:16:09 +02:00
SOURCES = $(shell find . -name "*.go")
default: build
build: $(SOURCES)
go build
fmt: $(SOURCES)
go fmt