2025-05-11 09:13:28 +00:00
|
|
|
DIRNAME=$(notdir $(CURDIR))
|
|
|
|
|
|
|
|
ELMS=$(wildcard src/*.elm)
|
|
|
|
|
|
|
|
app.js: src/App.elm $(ELMS)
|
|
|
|
-elm make --optimize $< --output=$@ 2> error.txt
|
|
|
|
@cat error.txt
|
|
|
|
|
|
|
|
upload: app.js index.html style.css
|
|
|
|
rsync -avz . clpland:~/domains/somethingorotherwhatever.com/html/$(DIRNAME)
|
2025-02-09 20:35:44 +00:00
|
|
|
@echo "Uploaded to https://somethingorotherwhatever.com/$(DIRNAME)"
|