2020-03-21 13:04:54 +05:00
|
|
|
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
|
2020-03-21 13:04:54 +05:00
|
|
|
|
|
|
|
help : Makefile
|
|
|
|
@echo "helloworld Makefile available subcommands:\n"
|
|
|
|
@sed -n 's/^## //p' $<
|
|
|
|
|
2022-01-07 10:53:39 +05:00
|
|
|
.DEFAULT_GOAL := help
|