bulpherjs/examples/helloworld/Makefile

12 lines
249 B
Makefile
Raw Normal View History

GOPHERJS := $(shell which gopherjs 2> /dev/null)
## start-web : Starts GopherJS serving.
start-web:
2022-01-07 10:53:39 +05:00
${GOPHERJS} serve . -v
help : Makefile
@echo "helloworld Makefile available subcommands:\n"
@sed -n 's/^## //p' $<
2022-01-07 10:53:39 +05:00
.DEFAULT_GOAL := help