Skip to content

Commit

Permalink
normalize whitespace
Browse files Browse the repository at this point in the history
Replace tabs with spaces and CRLF newlines with LF.
  • Loading branch information
invertego authored and LukeUsher committed Dec 20, 2022
1 parent 2daf9f5 commit 619415d
Show file tree
Hide file tree
Showing 19 changed files with 1,918 additions and 1,910 deletions.
20 changes: 14 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ Prerequisites

#### *nix building

g++ make pkg-config libgtk2.0-dev libcanberra-gtk-module libgl-dev libasound2-dev
```
g++ make pkg-config libgtk2.0-dev libcanberra-gtk-module libgl-dev libasound2-dev
```

By default, GTK2 is used, but support for GTK3 is available. You will need to install the additional package `libgtk-3-dev` as well
as specifying the command line option `hiro=gtk3` at compile time.
Expand All @@ -38,19 +40,25 @@ Compilation

Check out the source code by running this command:

git clone https://github.com/ares-emulator/ares.git

```
git clone https://github.com/ares-emulator/ares.git
```

From the root of the project directory run:

make -j4 build=release

```
make -j4 build=release
```

that builds with build type of type 'release'.
`-j4` indicates number of parallel build processes, and shouldn't be set higher than N-1 cores on your processor. Specifying this option can significantly decrease the time to build this project. There are multiple build types available (debug, etc.). Most additional options can be
found in nall's make file (nall/GNUmakefile).

To start compilation from the beginning, run the following prior to compiling:

make clean
```
make clean
```

Build Output
------------
Expand Down
Loading

0 comments on commit 619415d

Please sign in to comment.