gone, trends

This commit is contained in:
Peter Kleiweg
2026-06-06 17:10:38 +02:00
parent 9f29222909
commit 1f4a084624
6 changed files with 145 additions and 9 deletions

View File

@@ -21,9 +21,11 @@ all:
make bin/data2json
make bin/dates2json
make bin/flush
make bin/gone
make bin/items2count
make bin/rang
make bin/top20
make bin/trends
make bin/week2files
bin/data2json: cmd/data2json/*.go
@@ -35,6 +37,9 @@ bin/dates2json: cmd/dates2json/*.go
bin/flush: cmd/flush/*.go
go build -o $@ $^
bin/gone: cmd/gone/*.go
go build -o $@ $^
bin/items2count: cmd/items2count/*.go
go build -o $@ $^
@@ -44,6 +49,9 @@ bin/rang: cmd/rang/*.go
bin/top20: cmd/top20/*.go
go build -o $@ $^
bin/trends: cmd/trends/*.go
go build -o $@ $^
bin/week2files: cmd/week2files/*.go
go build -o $@ $^