
all:
	make -C AT5
	make -C GG
	make -C NieuwsNL
	make -C NOS
	make -C NU
	make -C RO
	make -C Sargasso
	make -C Sikkom
	make -C Tzum
	make -C VRT
	make bin/ISOWeek
	make bin/score
	make bin/week2files

bin/ISOWeek: cmd/ISOWeek/*.go
	go build -o $@ $^

bin/score: cmd/score/*.go
	go build -o $@ $^

bin/week2files: cmd/week2files/*.go
	go build -o $@ $^

