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:
Wren Turkal 2020-07-11 17:20:29 -07:00
parent da4e22de62
commit a930d6672e
2 changed files with 3 additions and 0 deletions

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
/build/
/prefix/
.config

View file

@ -1,3 +1,5 @@
-include .config
# Configuration
## Architecture to build Redox for (aarch64 or x86_64)
ARCH?=x86_64