mirror of
https://github.com/tailix/kernel.git
synced 2024-11-20 11:16:10 -05:00
Add configuration script
This commit is contained in:
parent
bc4257bccc
commit
eec868aaf9
4 changed files with 7 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,4 +1,6 @@
|
||||||
*.o
|
*.o
|
||||||
|
|
||||||
|
/config.mk
|
||||||
|
|
||||||
/arch/kernel
|
/arch/kernel
|
||||||
/libk/libk.a
|
/libk/libk.a
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
||||||
export CCPREFIX = i686-elf-
|
include config.mk
|
||||||
|
|
||||||
run: run-iso
|
run: run-iso
|
||||||
|
|
||||||
|
|
1
config.mk.in
Normal file
1
config.mk.in
Normal file
|
@ -0,0 +1 @@
|
||||||
|
export CCPREFIX = i686-elf-
|
3
configure
vendored
Executable file
3
configure
vendored
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/sh -e
|
||||||
|
|
||||||
|
cp config.mk.in config.mk
|
Loading…
Reference in a new issue