Files
nlnieuws/Makefile
Peter Kleiweg d2e866720c handle SIGPIPE
2026-03-26 18:03:36 +01:00

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 $@ $^