This commit is contained in:
Peter Kleiweg
2026-03-26 08:45:25 +01:00
parent 7a8b0870e2
commit 010bc3ca59
4 changed files with 70 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ all:
make -C VRT
make bin/ISOWeek
make bin/score
make bin/top20
make bin/week2files
bin/ISOWeek: cmd/ISOWeek/*.go
@@ -20,6 +21,9 @@ bin/ISOWeek: cmd/ISOWeek/*.go
bin/score: cmd/score/*.go
go build -o $@ $^
bin/top20: cmd/top20/*.go
go build -o $@ $^
bin/week2files: cmd/week2files/*.go
go build -o $@ $^