Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
build: install
elm make src/Main.elm --output=build/main.js
.PHONY: all build clean

install:
elm package install
build:
elm make src/Main.elm --output=build/main.js

run:
elm live src/Main.elm --output=build/main.js --open --debug
elm-live src/Main.elm --open --debug -- --output=build/main.js
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,9 @@ nice [intro](http://www.hevanet.com/cristofd/brainfuck/epistle.html) and
[Fabian](https://copy.sh/) for the great [art](https://copy.sh/brainfuck/) that
came prior to mine.

**You need to have [Elm](https://guide.elm-lang.org/install/elm.html) and
[elm-live](https://www.elm-live.com/) installed.**

To play around with the debugger, go to [my site](http://minond.xyz/brainfuck/)
or run locally by downloading this repo and running `make install run`.
or run locally by downloading this repo and running `make run`. Use `make build`
to update `build/main.js` accordingly.
Loading