Files
nlnieuws/Makefile
Peter Kleiweg a9f9e17acf gone gone
2026-06-06 21:05:00 +02:00

54 lines
836 B
Makefile

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/rang
make bin/top20
make bin/trends
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/rang: cmd/rang/*.go
go build -o $@ $^
bin/top20: cmd/top20/*.go
go build -o $@ $^
bin/trends: cmd/trends/*.go
go build -o $@ $^
bin/week2files: cmd/week2files/*.go
go build -o $@ $^