34 lines
479 B
Makefile
34 lines
479 B
Makefile
|
|
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/flush
|
|
make bin/score
|
|
make bin/top20
|
|
make bin/week2files
|
|
|
|
bin/ISOWeek: cmd/ISOWeek/*.go
|
|
go build -o $@ $^
|
|
|
|
bin/flush: cmd/flush/*.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 $@ $^
|
|
|