Add a file to hold a local make config.
This file can be used to set make variables to override defaults without checking such changes into git. This is useful for settings such as the filesystem size generated for qemu images. Signed-off-by: Wren Turkal <wt@penguintechs.org>
This commit is contained in:
parent
da4e22de62
commit
a930d6672e
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
/build/
|
/build/
|
||||||
/prefix/
|
/prefix/
|
||||||
|
.config
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
-include .config
|
||||||
|
|
||||||
# Configuration
|
# Configuration
|
||||||
## Architecture to build Redox for (aarch64 or x86_64)
|
## Architecture to build Redox for (aarch64 or x86_64)
|
||||||
ARCH?=x86_64
|
ARCH?=x86_64
|
||||||
|
|
Loading…
Reference in a new issue