11 lines
No EOL
332 B
Makefile
11 lines
No EOL
332 B
Makefile
DIRNAME=$(notdir $(CURDIR))
|
|
|
|
ELMS=$(wildcard src/*.elm)
|
|
|
|
app.js: src/App.elm $(ELMS)
|
|
-elm make $< --output=$@ 2> error.txt
|
|
@cat error.txt
|
|
|
|
upload: app.js index.html style.css
|
|
rsync -avz . clpland:~/domains/somethingorotherwhatever.com/html/$(DIRNAME)
|
|
@echo "Uploaded to https://somethingorotherwhatever.com/$(DIRNAME)"
|