diff options
| -rw-r--r-- | go/Makefile | 2 | ||||
| -rw-r--r-- | html/Makefile | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/go/Makefile b/go/Makefile index 8442dfa9..8bae628a 100644 --- a/go/Makefile +++ b/go/Makefile @@ -1,5 +1,7 @@ PACKAGES := assets game server client dummy-ui +SHELL := bash + APPS := server client dummy-ui OBJS := $(foreach app,$(APPS),$(app)/$(app)) WASM := client/client.wasm webtools/webtools.wasm diff --git a/html/Makefile b/html/Makefile index 9188c4a5..25997e88 100644 --- a/html/Makefile +++ b/html/Makefile @@ -1,4 +1,5 @@ VERBOSE ?= @ +SHELL := bash HTML_TEMPLATE := template.html PANDOC_FLAGS := -f markdown --embed-resources --standalone --template=$(HTML_TEMPLATE) |
