Skip to content
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.

Commit

Permalink
Allow debug build using 'make' and document it
Browse files Browse the repository at this point in the history
  • Loading branch information
funnelweb committed Feb 24, 2013
1 parent 19643d9 commit b68f6fe
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions README.md
Expand Up @@ -23,6 +23,13 @@ The usual:
make
sudo make install
```
By default that makes release binaries. To make debug, use
```
make clean
make CONFIG=debug
sudo make install CONFIG=debug
```


### On MacOS (OSX)

Expand All @@ -32,6 +39,12 @@ Use a prefix to your version of Mono:
make
sudo make install
```
By default that makes release binaries. To make debug, use
```
make clean
make CONFIG=debug
sudo make install CONFIG=debug
```

### On Windows, using msbuild (e.g.. if .NET is installed)
```
Expand Down
2 changes: 1 addition & 1 deletion config.make.in
Expand Up @@ -33,7 +33,7 @@ DELAY_SIGN_TOKEN = b03f5f7f11d50a3a
SIGN_TOKEN = f536804aa0eb945b

bootstrapdir = $(bootstrap)/4.0/
tmpdir = .libs/
tmpdir = .libs/$(CONFIG)/
objdir = $(tmpdir)$(TARGET)/
protodir = $(builddir)/lib/proto/4.0/
outdir = $(builddir)lib/$(CONFIG)/$(TARGET)/
Expand Down

0 comments on commit b68f6fe

Please sign in to comment.