diff options
author | Louie S <louie@example.com> | 2022-11-06 16:36:00 -0800 |
---|---|---|
committer | Louie S <louie@example.com> | 2022-11-06 16:36:00 -0800 |
commit | 6fe505005d56abdee806eeb53669c9d0fce32214 (patch) | |
tree | 531e72b4e6e48f81201e8c5b3a12a8ecbc789d5a /docs/README.md | |
parent | 2c29b6a5145a4c44cbef03197db64cd2d7decd15 (diff) |
Updated build instructions
Diffstat (limited to 'docs/README.md')
-rw-r--r-- | docs/README.md | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/docs/README.md b/docs/README.md index 08a5784..e93c75e 100644 --- a/docs/README.md +++ b/docs/README.md @@ -9,8 +9,20 @@ For Windows instructions, see [here](windows_compile_instructions.md) terminal-media-launcher can be compiled on any system with make, gcc, and the ncurses library (libncurses-dev) installed. It can be compiled and installed on any Linux distribution, and can also be compiled and run on Windows 10. To compile and run terminal-media-launcher: 1. Clone the repository -2. Run `make` in the directory the repository was cloned into. This will create a file called `terminal-media-launcher` -3. `./terminal-media-launcher` to run the program +2. Run the commands below in the directory the repository was cloned into. This will build the binary `src/terminal-media-launcher` + +``` +$ autoreconf +$ automake --add-missing +$ ./configure +$ make +``` + +3. To run the program: + +``` +$ src/terminal-media-launcher +``` Note that terminal-media-launcher will not run until you have created a configuration file. |