Bläddra i källkod

Makefile - download jokes only once

master
Dejvino 1 år sedan
förälder
incheckning
e9d28497b7
1 ändrade filer med 3 tillägg och 3 borttagningar
  1. +3
    -3
      Makefile

+ 3
- 3
Makefile Visa fil

@@ -5,10 +5,10 @@ DST_IMAGES := $(sort $(addprefix build/,$(addsuffix .bmp,$(notdir $(basename $(S

all: clean build

download: jokes.json
download: build/jokes.json

jokes.json: build-dir
curl -o build/jokes.json https://github.com/wiz64/superfun/raw/main/database/ichd/jokes-file.json
build/jokes.json: build-dir
[ -e build/jokes.json ] || curl -o build/jokes.json https://github.com/wiz64/superfun/raw/main/database/ichd/jokes-file.json

build: build-dir images download



Laddar…
Avbryt
Spara