diff options
author | Alexis211 <alexis211@gmail.com> | 2009-10-09 17:05:26 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-10-09 17:05:26 +0200 |
commit | 6f00c13ce3e567bfa59aee35cd1e77aec5b97d45 (patch) | |
tree | 73dd5a21886f9fa4c9264054f8bcdc77fd47f71f /Source/Kernel/Makefile | |
parent | b9a988061e8220c5ef2406f5cd2221bf3f1b435d (diff) | |
download | Melon-6f00c13ce3e567bfa59aee35cd1e77aec5b97d45.tar.gz Melon-6f00c13ce3e567bfa59aee35cd1e77aec5b97d45.zip |
Nothing, really
Diffstat (limited to 'Source/Kernel/Makefile')
-rw-r--r-- | Source/Kernel/Makefile | 117 |
1 files changed, 59 insertions, 58 deletions
diff --git a/Source/Kernel/Makefile b/Source/Kernel/Makefile index fd5263b..76bc9eb 100644 --- a/Source/Kernel/Makefile +++ b/Source/Kernel/Makefile @@ -1,5 +1,5 @@ .PHONY: clean, mrproper - + CC = gcc CXX = g++ LD = ld @@ -8,85 +8,86 @@ CFLAGS = -nostdlib -nostartfiles -nodefaultlibs -fno-builtin -fno-stack-protecto CXXFLAGS = -nostartfiles -nostdlib -fno-exceptions -fno-rtti -I . -Wall -Werror -Wno-write-strings -funsigned-char ASM = nasm ASMFLAGS = -f elf - + OutFile = Melon.ke Objects = Core/loader.wtf.o \ - Core/kmain.wtf.o \ - Core/cppsupport.wtf.o \ - Core/Sys.ns.o \ - Core/CMem.ns.o \ - Core/Log.ns.o \ - MemoryManager/Mem.ns.o \ - MemoryManager/PhysMem.ns.o \ - MemoryManager/GDT.wtf.o \ - MemoryManager/GDT.ns.o \ - MemoryManager/PageDirectory.class.o \ - MemoryManager/PageAlloc.ns.o \ - DeviceManager/Disp.ns.o \ - DeviceManager/Dev.ns.o \ - DeviceManager/Time.ns.o \ - DeviceManager/Kbd.ns.o \ - TaskManager/Process.class.o \ - TaskManager/Thread.class.o \ - TaskManager/Task.ns.o \ - TaskManager/Task.wtf.o \ - TaskManager/Mutex.class.o \ - VTManager/VirtualTerminal.proto.o \ - VTManager/SimpleVT.class.o \ - VTManager/ScrollableVT.class.o \ - VTManager/PipeVT.class.o \ - VTManager/FileVT.class.o \ - VTManager/VirtualTerminal-kbd.proto.o \ - VTManager/VT.ns.o \ - Shell/KernelShell.class.o \ - Shell/KernelShell-fs.class.o \ - Shell/KernelShell-sys.class.o \ - Library/Bitset.class.o \ - Library/String.class.o \ - Library/ByteArray.class.o \ - Library/WChar.class.o \ - VFS/Partition.class.o \ - VFS/Part.ns.o \ - VFS/VFS.ns.o \ - VFS/File.class.o \ - VFS/TextFile.class.o \ - VFS/DirectoryNode.class.o \ - FileSystems/RamFS/RamFS.class.o \ - SyscallManager/IDT.ns.o \ - SyscallManager/IDT.wtf.o \ - Devices/Display/VGATextOutput.class.o \ - Devices/Keyboard/PS2Keyboard.class.o \ - Devices/Floppy/FloppyController.class.o \ - Devices/Floppy/FloppyDrive.class.o \ - Devices/Timer.class.o - + Core/kmain.wtf.o \ + Core/cppsupport.wtf.o \ + Core/Sys.ns.o \ + Core/CMem.ns.o \ + Core/Log.ns.o \ + MemoryManager/Mem.ns.o \ + MemoryManager/PhysMem.ns.o \ + MemoryManager/GDT.wtf.o \ + MemoryManager/GDT.ns.o \ + MemoryManager/PageDirectory.class.o \ + MemoryManager/PageAlloc.ns.o \ + DeviceManager/Disp.ns.o \ + DeviceManager/Dev.ns.o \ + DeviceManager/Time.ns.o \ + DeviceManager/Kbd.ns.o \ + TaskManager/Process.class.o \ + TaskManager/Thread.class.o \ + TaskManager/Task.ns.o \ + TaskManager/Task.wtf.o \ + TaskManager/Mutex.class.o \ + VTManager/VirtualTerminal.proto.o \ + VTManager/SimpleVT.class.o \ + VTManager/ScrollableVT.class.o \ + VTManager/PipeVT.class.o \ + VTManager/FileVT.class.o \ + VTManager/VirtualTerminal-kbd.proto.o \ + VTManager/VT.ns.o \ + Shell/KernelShell.class.o \ + Shell/KernelShell-fs.class.o \ + Shell/KernelShell-sys.class.o \ + Library/Bitset.class.o \ + Library/String.class.o \ + Library/ByteArray.class.o \ + Library/WChar.class.o \ + VFS/Partition.class.o \ + VFS/Part.ns.o \ + VFS/VFS.ns.o \ + VFS/File.class.o \ + VFS/TextFile.class.o \ + VFS/DirectoryNode.class.o \ + FileSystems/RamFS/RamFS.class.o \ + SyscallManager/IDT.ns.o \ + SyscallManager/IDT.wtf.o \ + Devices/Display/VGATextOutput.class.o \ + Devices/Keyboard/PS2Keyboard.class.o \ + Devices/Floppy/FloppyController.class.o \ + Devices/Floppy/FloppyDrive.class.o \ + Devices/Timer.class.o + all: $(OutFile) echo "* Done with $(OutFile)." - + rebuild: mrproper all - + $(OutFile): $(Objects) echo "* Linking executable : $(OutFile)..." $(LD) $(LDFLAGS) -o $(OutFile) $^ - + %.o: %.c echo "* Compiling $<..." $(CC) -c $< -o $@ $(CFLAGS) - + %.o: %.cpp echo "* Compiling $<..." $(CXX) -c $< -o $@ $(CXXFLAGS) - + %.o: %.asm echo "* Compiling $<..." $(ASM) $(ASMFLAGS) -o $@ $< - + clean: echo "* Removing object files..." rm -rf *.o rm -rf */*.o rm -rf */*/*.o - + mrproper: clean echo "* Removing executable : $(OutFile)" rm -rf $(OutFile) + |