Created
October 2, 2018 02:39
-
-
Save mather/ebf2ddbca46af8d650f23c81fb1d35a9 to your computer and use it in GitHub Desktop.
Elm 0.19でindex.htmlとdebug.htmlを生成するMakefileの典型例
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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