Files
nlnieuws/Makefile
2026-04-24 12:07:29 +02:00

45 lines
688 B
Makefile

all:
make -C AT5
make -C GG
make -C LitNL
make -C NieuwsNL
make -C NOS
make -C NU
make -C Oog
make -C RO
make -C RTVNoord
make -C Sargasso
make -C Sikkom
make -C Tzum
make -C VRT
make bin/data2json
make bin/dates2json
make bin/flush
make bin/items2count
make bin/score
make bin/top20
make bin/week2files
bin/data2json: cmd/data2json/*.go
go build -o $@ $^
bin/dates2json: cmd/dates2json/*.go
go build -o $@ $^
bin/flush: cmd/flush/*.go
go build -o $@ $^
bin/items2count: cmd/items2count/*.go
go build -o $@ $^
bin/score: cmd/score/*.go
go build -o $@ $^
bin/top20: cmd/top20/*.go
go build -o $@ $^
bin/week2files: cmd/week2files/*.go
go build -o $@ $^