* Makefiles: use gcc to generate the dependency files instead of makedepend
[lightOS.git] / .gitignore
blob36b16deedb297fa101d86d2a08a68e73d2802ab7
1 ## build directories
2 build/x86/boot/grub/stage1
3 build/x86/boot/grub/stage2
4 build/x86/boot/grub/stage2_eltorito
5 build/x86_64/boot/grub/stage1
6 build/x86_64/boot/grub/stage2
7 build/x86_64/boot/grub/stage2_eltorito
9 # Toolchain
10 toolchain/bin
11 toolchain/nasm
12 toolchain/*-ar
13 toolchain/*-as
14 toolchain/*-bochs
15 toolchain/*-c++filt
16 toolchain/*-g++
17 toolchain/*-gcc
18 toolchain/*-gcc-include
19 toolchain/*-gcc-include-fixed
20 toolchain/*-ld
21 toolchain/*-libgcc.a
22 toolchain/*-nm
23 toolchain/*-objdump
24 toolchain/*-qemu
25 toolchain/*-readelf
26 toolchain/*-strip
27 toolchain/binutils-*.tar.bz2
28 toolchain/gcc-core-*.tar.bz2
29 toolchain/gcc-g++-*.tar.bz2
30 toolchain/grub-*.tar.gz
31 toolchain/nasm-*.tar.bz2
32 toolchain/qemu-*.tar.gz
33 toolchain/bochs-*.tar.gz
35 # Temporary directories for arch created
36 .tmpdirs-*
38 # Makefile configs
39 Makefile.asm.config
40 Makefile.config
42 # Soft links
43 kernel/include/kernel/arch
44 kernel/include/kernel/platform
45 kernel/libarch
46 kernel/libc/conversion.c
47 kernel/libc/ctype.c
48 kernel/libc/errno.c
49 kernel/libc/memory.c
50 kernel/libc/memory.h
51 kernel/libc/sbrk.c
52 kernel/libc/string
53 kernel/libsupc++
54 lib/libc++/libsupc++
55 lib/libc/include/libOS/this
56 lib/libc/libOS/this
57 lib/libc/libarch
58 lib/libunix/include/libOS/this
59 lib/libunix/libOS/this
60 lib/lightOS/libarch
61 lib/lightOS/libkernel
62 lib/lightOS/libserver
63 libarch/include/libarch/arch
64 libarch/include/libarch/x86_64/console.h
65 libarch/include/libarch/x86_64/ioport.h
66 libkernel/include/libkernel/arch
68 # Dependency files
69 *.dep
71 # Build directory
72 build/*
74 # Kernel binary files
75 kernel/x86/smp.bin
76 kernel/x86_64/smp.bin
78 # libOS's
79 lib/libc/libOS/lightOS/libOS-*.a
80 lib/libunix/libOS/lightOS/libOS-*.a
82 # Documentation
83 Doxygen.*.log
84 doc/*