Skip to content

Commit c30effc

Browse files
committed
Change the directory tree for build
1 parent 4ffc9d0 commit c30effc

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,25 +34,25 @@ For convenience, the build environments using GCC, Clang, and Microsoft Visual S
3434

3535
### Using GCC ###
3636

37-
`packcc` will be built in both directories `build/gcc/bin/debug` and `build/gcc/bin/release` using `gcc` by executing the following commands:
37+
`packcc` will be built in both directories `build/gcc/debug/bin` and `build/gcc/release/bin` using `gcc` by executing the following commands:
3838

3939
```
4040
cd build/gcc
4141
make
4242
```
4343

44-
`packcc` in the directory `build/gcc/bin/release` is suitable for practical use.
44+
`packcc` in the directory `build/gcc/release/bin` is suitable for practical use.
4545

4646
### Using Clang ###
4747

48-
`packcc` will be built in both directories `build/clang/bin/debug` and `build/clang/bin/release` using `clang` by executing the following commands:
48+
`packcc` will be built in both directories `build/clang/debug/bin` and `build/clang/release/bin` using `clang` by executing the following commands:
4949

5050
```
5151
cd build/clang
5252
make
5353
```
5454

55-
`packcc` in the directory `build/clang/bin/release` is suitable for practical use.
55+
`packcc` in the directory `build/clang/release/bin` is suitable for practical use.
5656

5757
### Using Microsoft Visual Studio ###
5858

build/clang/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ LDFLAGS_R=
66

77
SRCDIR=../../src
88
TESTDIR=../../tests
9-
TMPDIR_D=tmp/debug
10-
TMPDIR_R=tmp/release
11-
BINDIR_D=bin/debug
12-
BINDIR_R=bin/release
9+
TMPDIR_D=debug/tmp
10+
TMPDIR_R=release/tmp
11+
BINDIR_D=debug/bin
12+
BINDIR_R=release/bin
1313

1414
EXAMPLES:=$(patsubst $(SRCDIR)/examples/%.peg,examples/%,$(wildcard $(SRCDIR)/examples/*.peg))
1515

build/gcc/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ LDFLAGS_R=
66

77
SRCDIR=../../src
88
TESTDIR=../../tests
9-
TMPDIR_D=tmp/debug
10-
TMPDIR_R=tmp/release
11-
BINDIR_D=bin/debug
12-
BINDIR_R=bin/release
9+
TMPDIR_D=debug/tmp
10+
TMPDIR_R=release/tmp
11+
BINDIR_D=debug/bin
12+
BINDIR_R=release/bin
1313

1414
EXAMPLES:=$(patsubst $(SRCDIR)/examples/%.peg,examples/%,$(wildcard $(SRCDIR)/examples/*.peg))
1515

0 commit comments

Comments
 (0)