Every great journey starts with a Makefile

This commit is contained in:
Aarni Koskela
2021-02-19 11:13:21 +02:00
commit 494431b7ac
5 changed files with 350 additions and 0 deletions

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
.PHONY: data/results.xlsx data/results.tsv
all: data/results.xlsx data/results.tsv
data/results.xlsx:
curl -fsSL -o $@ "https://docs.google.com/spreadsheets/d/1l-Zgf1HqaFGd8gRA8kQzaxJ3R7eJy29ORUS8pr5o0nk/export?format=xlsx"
data/results.tsv:
curl -fsSL -o $@ "https://docs.google.com/spreadsheets/d/1l-Zgf1HqaFGd8gRA8kQzaxJ3R7eJy29ORUS8pr5o0nk/export?format=tsv"