This repository has been archived on 2024-02-25. You can view files and clone it, but cannot push or open issues/pull-requests.
elo-anything/Makefile

9 lines
201 B
Makefile

all: dist
dist: dist/index.html $(shell find static -type f)
cp -r static/* dist
dist/index.html: $(shell find src -type f -name '*.elm') elm.json
@mkdir -p dist
elm make src/Main.elm --output $@