From c943c48e4128faf7633b4e84d24d3508d399126d Mon Sep 17 00:00:00 2001 From: Noah Swerhun Date: Fri, 20 Oct 2023 15:18:02 -0500 Subject: [PATCH] removed trailing whitespace --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 46aa9ea..188a0b5 100644 --- a/README.md +++ b/README.md @@ -7,12 +7,12 @@ Makefile generator for C projects. `mgen` automatically generates build rules for all source files (extension `.c`) it finds in a recursive search of the directory in which it is run. It places the rules in your existing makefile, meaning you can easily change build options -and even write your own rules based on those generated. +and even write your own rules based on those generated. `mgen` will place the generated rules between the strings "`#=mgen_start=#`" and "`#=mgen_end=#`" in your makefile. If these lines are not present, it will add them to the end of the file and place the rules there. Anything not between -these lines will not be touched by `mgen`. +these lines will not be touched by `mgen`. `mgen` utilizes certain common make variables when generating the build rules. These are: @@ -35,15 +35,15 @@ directory `BUILD_DIR/obj/`, and the `TARGET` will be placed at ``` $ mgen --help -Usage: mgen [OPTIONS] [BUILD_DIR] - -Arguments: - [BUILD_DIR] Directory to place build files [default: ./build] - -Options: - -p, --pretty Replace default make output with nice build messages - -m, --makefile Path to makefile [default: ./Makefile] - -h, --help Print help +Usage: mgen [OPTIONS] [BUILD_DIR] + +Arguments: + [BUILD_DIR] Directory to place build files [default: ./build] + +Options: + -p, --pretty Replace default make output with nice build messages + -m, --makefile Path to makefile [default: ./Makefile] + -h, --help Print help ``` Starting from a "blank slate," i.e. you have no build system configured in your