From 2574b9c8e8fb92d57cacbafa5eb0860fb587798c Mon Sep 17 00:00:00 2001 From: humleflue Date: Fri, 23 Oct 2020 00:08:56 +0200 Subject: [PATCH] Update README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 87729ee..ac73c17 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,15 @@ and finally, build it using the building system you chose (e.g. Make): $ make ``` +After the build has been finished, you may install the binaries to your local system (see [CMAKE\_INSTALL\_PREFIX](https://cmake.org/cmake/help/v3.0/variable/CMAKE_INSTALL_PREFIX.html) for information about the install prefix): +```sh +$ make install +``` +Alternatively, you may run the interpreter directly without installation, for instance: +```sh +$ ./brainfuck ../examples/hello.bf +``` + ## License The code is released under the Apache License version 2.0. See [LICENSE.txt](/LICENSE.txt).