From bd56405aae16f91f4bfb5b47a66b5645e9d97df9 Mon Sep 17 00:00:00 2001 From: Rangi42 Date: Sun, 18 Feb 2024 15:02:17 -0500 Subject: [PATCH] Remove now-unnecessary indentation of code blocks --- README.md | 80 +++++++++++++++++++++++++++---------------------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/README.md b/README.md index dd8dfa84..e29ec568 100644 --- a/README.md +++ b/README.md @@ -29,14 +29,14 @@ online for various platforms. [Building from source](https://rgbds.gbdev.io/inst is possible using `make` or `cmake`; follow the link for more detailed instructions. ```sh - make - sudo make install +make +sudo make install ``` ```sh - cmake -S . -B build -DCMAKE_BUILD_TYPE=Release - cmake --build build - cmake --install build +cmake -S . -B build -DCMAKE_BUILD_TYPE=Release +cmake --build build +cmake --install build ``` ## 2. RGBDS Folder Organization @@ -44,41 +44,41 @@ is possible using `make` or `cmake`; follow the link for more detailed instructi The RGBDS source code file structure is as follows: ``` - . - ├── .github/ - │ ├── scripts/ - │ │ └── ... - │ └── workflows/ - │ └── ... - ├── contrib/ - │ ├── zsh_compl/ - │ │ └── ... - │ └── ... - ├── include/ - │ └── ... - ├── man/ - │ └── ... - ├── src/ - │ ├── asm/ - │ │ └── ... - │ ├── extern/ - │ │ └── ... - │ ├── fix/ - │ │ └── ... - │ ├── gfx/ - │ │ └── ... - │ ├── link/ - │ │ └── ... - │ ├── CMakeLists.txt - │ └── ... - ├── test/ - │ ├── ... - │ └── run-tests.sh - ├── .clang-format - ├── CMakeLists.txt - ├── Dockerfile - ├── Makefile - └── README.md +. +├── .github/ +│ ├── scripts/ +│ │ └── ... +│ └── workflows/ +│ └── ... +├── contrib/ +│ ├── zsh_compl/ +│ │ └── ... +│ └── ... +├── include/ +│ └── ... +├── man/ +│ └── ... +├── src/ +│ ├── asm/ +│ │ └── ... +│ ├── extern/ +│ │ └── ... +│ ├── fix/ +│ │ └── ... +│ ├── gfx/ +│ │ └── ... +│ ├── link/ +│ │ └── ... +│ ├── CMakeLists.txt +│ └── ... +├── test/ +│ ├── ... +│ └── run-tests.sh +├── .clang-format +├── CMakeLists.txt +├── Dockerfile +├── Makefile +└── README.md ``` - `.github/` - files and scripts related to the integration of the RGBDS codebase with