40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
For example:
mkdir build
cd build
../configure
make
This will now keep all generates files separate from the maintained
source code.
--------------------------------------------------------------------------
Here are some notes on what is happening behind the scenes:
* The configure script (if used) examines the options given
|
|
|
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
For example:
mkdir build
cd build
../configure
make
This will now keep all generated files separate from the maintained
source code.
--------------------------------------------------------------------------
Here are some notes on what is happening behind the scenes:
* The configure script (if used) examines the options given
|