
all:
	make -C AT5
	make -C BuurtAdam
	make -C BuurtGrn
	make -C GG
	make -C HLN
	make -C LitNL
	make -C NieuwsNL
	make -C NOS
	make -C NU
	make -C Oog
	make -C Parool
	make -C RO
	make -C RTVNoord
	make -C Sargasso
	make -C Sikkom
	make -C Tzum
	make -C Volkskrant
	make -C VRT
	make bin/data2json
	make bin/dates2json
	make bin/flush
	make bin/items2count
	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/top20: cmd/top20/*.go
	go build -o $@ $^

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

