Beginnings of a Makefile, completed(?) .gitignore

master
Brady McDonough 3 years ago
parent f7181f68d9
commit 1a816f554c

6
.gitignore vendored

@ -4,4 +4,8 @@
# elm buildfiles
frontend/elm-stuff/
frontend/www/elm.js
frontend/www/elm.js
# backend logs and data
backend/*.log
backend/repo/

@ -0,0 +1,15 @@
ELM := $(shell command -v elm 2>/dev/null)
GUILE := $(shell command -v guile 2>/dev/null)
ART := $(shell command -v art)
ifndef ELM
ELM = $(error "elm installation not found in PATH")
endif
ifndef GUILE
GUILE = $(error "guile installation not found in PATH")
endif
ifndef ART
ART = $(error "artanis installation not found in PATH")
endif
ELM_TARGET = frontend/www/elm.js
Loading…
Cancel
Save