You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
514 B
Markdown
24 lines
514 B
Markdown
4 years ago
|
# How to build
|
||
|
|
||
|
To customize your build, you may change several variables that are consumed by make.
|
||
|
|
||
|
These variables, along with some explanations can be found in Makefile.conf.
|
||
|
|
||
|
You can edit that file, or create a file `local.conf` in the root of the repository, which will also be parsed by make.
|
||
|
|
||
|
A sample `local.conf` looks like this:
|
||
|
|
||
|
~~~
|
||
|
PREFIX=$(HOME)/code/libad/build
|
||
|
|
||
|
ENGINE_LIB=-L$(HOME)/code/engine/build/lib
|
||
|
ENGINE_INC=-I$(HOME)/code/engine/build/include
|
||
|
~~~
|
||
|
|
||
|
Now, run:
|
||
|
|
||
|
~~~
|
||
|
make all
|
||
|
make install
|
||
|
~~~
|