Skip to content

Commit

Permalink
Update documentation to use "make" vs. "gmake" and to set srcdir (unt…
Browse files Browse the repository at this point in the history
…il I can find a proper and portable way to handle spaces and control characters in the makefile on all supported platforms).
  • Loading branch information
johnsonjh committed Oct 25, 2021
1 parent 1d6fe5a commit 7823e2a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,13 +163,13 @@ Some **_non_**-**_GNU_** "**Make**" systems **_may_** work, but are
(_necessary if automated detection is unsuccessful_)
- Check any other options or variables that may be available
- Build **DUMA**
- `gmake -f ../GNUmakefile`
(_for automatic OS detection and defaults_)
- `gmake -f ../GNUmakefile OSTYPE=cygwin`
- `gmake -f ../GNUmakefile srcdir=../`
(_for automatic OS detection and defaults; assumes gmake is GNU Make_)
- `make -f ../GNUmakefile srcdir=../ OSTYPE=cygwin`
(_for Microsoft Windows with Cygwin_)
- `mingw32-make -f ../GNUmakefile OSTYPE=msys`
- `mingw32-make -f ../GNUmakefile srcdir=../ OSTYPE=msys`
(_for Microsoft Windows with MSYS / MINGW via Command Prompt (CMD)_)
- `make -f ../GNUmakefile OS=linux`
- `make -f ../GNUmakefile srcdir=../ OS=linux`
(_for most GNU/Linux systems_)
- Test **DUMA**
- `gmake -f ../GNUmakefile check`
Expand Down

0 comments on commit 7823e2a

Please sign in to comment.