Move local config to "config.mk"

This commit is contained in:
Alex Kotov 2022-12-01 05:51:35 +04:00
parent 6adb5396b1
commit 153ce361f9
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
4 changed files with 13 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
/build_config.rb.lock
/config.mk
/image.iso
/dest/*

View File

@ -1,9 +1,9 @@
include config.mk
############
# Programs #
############
CCPREFIX = /home/kotovalexarian/repos/global/tailix/cross/root/bin/i386-elf-
# Toolchain
AR = $(CCPREFIX)ar
AS = $(CCPREFIX)as

View File

@ -21,3 +21,12 @@ The list may be incomplete.
* `grub-common`
* `qemu-system-x86`
* `rake`
Build
-----
Create file `config.mk`, use `config.example.mk` as a reference.
Then just do `make`.

1
config.example.mk Normal file
View File

@ -0,0 +1 @@
CCPREFIX = /home/kotovalexarian/repos/global/tailix/cross/root/bin/i386-elf-