27 lines
425 B
Makefile
27 lines
425 B
Makefile
all: build
|
|
|
|
build:
|
|
npm run build
|
|
|
|
bundle:
|
|
spago bundle-app
|
|
|
|
repl:
|
|
spago repl
|
|
|
|
serve:
|
|
npm run serve
|
|
|
|
spagobuild:
|
|
spago build
|
|
|
|
#HTTPD_ACCESS_LOGS ?= /tmp/access.log
|
|
#HTTPD_ADDR ?= 127.0.0.1
|
|
#HTTPD_PORT ?= 35000
|
|
#DIR ?= output
|
|
#serve:
|
|
# darkhttpd $(DIR) --addr $(HTTPD_ADDR) --port $(HTTPD_PORT) --log $(HTTPD_ACCESS_LOGS)
|
|
|
|
# You can add your specific instructions there.
|
|
-include makefile.user
|