33 lines
627 B
Makefile
33 lines
627 B
Makefile
all: build
|
|
|
|
build:
|
|
spago build
|
|
|
|
bundle: install-esbuild
|
|
PATH=$$PATH:node_modules/.bin spago bundle-app
|
|
mv index.js app/
|
|
|
|
repl:
|
|
spago repl
|
|
|
|
spagobuild:
|
|
spago build
|
|
|
|
install-esbuild:
|
|
@echo "install ebbuild"
|
|
[ -f node_modules/.bin/esbuild ] || npm install esbuild
|
|
|
|
HTTPD_ACCESS_LOGS ?= /tmp/access.log
|
|
HTTPD_ADDR ?= 127.0.0.1
|
|
HTTPD_PORT ?= 35000
|
|
DIR ?= app
|
|
serve:
|
|
darkhttpd $(DIR) --addr $(HTTPD_ADDR) --port $(HTTPD_PORT) --log $(HTTPD_ACCESS_LOGS)
|
|
|
|
# NPM can serve it, but it's slow for nothing.
|
|
#serve:
|
|
# npm run serve
|
|
|
|
# You can add your specific instructions there.
|
|
-include makefile.user
|