Update ProjectTree

This commit is contained in:
Adrien Bourmault 2019-06-02 21:15:52 +02:00
parent 4c04399b97
commit f41f09770c
2 changed files with 9 additions and 12 deletions

1
.gitignore vendored
View File

@ -24,6 +24,7 @@ osk-graph.ps
grub.log grub.log
Makefile.out.2 Makefile.out.2
build/bin/s** build/bin/s**
.buildconfig
#.stylehlp #.stylehlp
# Linker output # Linker output

View File

@ -55,10 +55,6 @@
│   │   │   ├── kaleid.x86_64 │   │   │   ├── kaleid.x86_64
│   │   │   └── loader.o │   │   │   └── loader.o
│   │   └── kaleid │   │   └── kaleid
│   │   ├── extras
│   │   │   ├── argv.c.229r.expand
│   │   │   ├── argv.d
│   │   │   └── argv.o
│   │   ├── kernel │   │   ├── kernel
│   │   │   ├── init │   │   │   ├── init
│   │   │   │   ├── info.c.229r.expand │   │   │   │   ├── info.c.229r.expand
@ -128,6 +124,9 @@
│   │   │   │   ├── sched.d │   │   │   │   ├── sched.d
│   │   │   │   └── sched.o │   │   │   │   └── sched.o
│   │   │   └── sh │   │   │   └── sh
│   │   │   ├── argv.c.229r.expand
│   │   │   ├── argv.d
│   │   │   ├── argv.o
│   │   │   ├── musage.c.229r.expand │   │   │   ├── musage.c.229r.expand
│   │   │   ├── musage.d │   │   │   ├── musage.d
│   │   │   ├── musage.o │   │   │   ├── musage.o
@ -195,12 +194,9 @@
│   │   ├── strtol.d │   │   ├── strtol.d
│   │   └── strtol.o │   │   └── strtol.o
│   ├── grub.log │   ├── grub.log
│   ├── kaleid32_disasm.asm
│   ├── kaleid64_disasm.asm
│   └── kernel.ld │   └── kernel.ld
├── include ├── include
│   ├── ex │   ├── ex
│   │   ├── argv.h
│   │   ├── lock.h │   │   ├── lock.h
│   │   └── malloc.h │   │   └── malloc.h
│   ├── init │   ├── init
@ -228,19 +224,19 @@
│   │   └── mm.h │   │   └── mm.h
│   ├── po │   ├── po
│   │   └── shtdwn.h │   │   └── shtdwn.h
│   ├── sh
│   │   ├── argv.h
│   │   └── shell.h
│   ├── asm.h │   ├── asm.h
│   ├── errno.h │   ├── errno.h
│   ├── kernel.h │   ├── kernel.h
│   ├── libc.h │   ├── libc.h
│   └── vers.h │   └── vers.h
├── kaleid ├── kaleid
│   ├── extras
│   │   └── argv.c
│   ├── kernel │   ├── kernel
│   │   ├── init │   │   ├── init
│   │   │   ├── info.c │   │   │   ├── info.c
│   │   │   ├── init.c │   │   │   ├── init.c
│   │   │   ├── init.h
│   │   │   ├── ssp.c │   │   │   ├── ssp.c
│   │   │   └── table.c │   │   │   └── table.c
│   │   ├── io │   │   ├── io
@ -272,6 +268,7 @@
│   │   ├── ps │   │   ├── ps
│   │   │   └── sched.c │   │   │   └── sched.c
│   │   └── sh │   │   └── sh
│   │   ├── argv.c
│   │   ├── musage.c │   │   ├── musage.c
│   │   ├── shcmds.c │   │   ├── shcmds.c
│   │   ├── shell.c │   │   ├── shell.c
@ -302,8 +299,7 @@
├── ChangeLog ├── ChangeLog
├── COPYING ├── COPYING
├── Makefile ├── Makefile
├── osk-graph.ps
├── ProjectTree ├── ProjectTree
└── README.md └── README.md
43 directories, 238 files 42 directories, 235 files