Files
nlnieuws/Makefile
Peter Kleiweg e49bdf82dd RTVNoord
2026-04-14 19:15:36 +02:00

39 lines
577 B
Makefile

all:
make -C AT5
make -C GG
make -C NieuwsNL
make -C NOS
make -C NU
make -C RO
make -C RTVNoord
make -C Sargasso
make -C Sikkom
make -C Tzum
make -C VRT
make bin/flush
make bin/ISOWeek
make bin/items2count
make bin/score
make bin/top20
make bin/week2files
bin/flush: cmd/flush/*.go
go build -o $@ $^
bin/ISOWeek: cmd/ISOWeek/*.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 $@ $^