Skip to content

Instantly share code, notes, and snippets.

@mather
Created October 2, 2018 02:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mather/ebf2ddbca46af8d650f23c81fb1d35a9 to your computer and use it in GitHub Desktop.
Save mather/ebf2ddbca46af8d650f23c81fb1d35a9 to your computer and use it in GitHub Desktop.
Elm 0.19でindex.htmlとdebug.htmlを生成するMakefileの典型例
all: index.html debug.html
debug.html: src/Main.elm elm.json
elm make src/Main.elm --debug --output=debug.html
index.html: src/Main.elm elm.json
elm make src/Main.elm --optimize --output=index.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment