summaryrefslogtreecommitdiff
path: root/Source/Kernel/Makefile
blob: 6a44ecf48fd8ba05c5974486cb129b54b9a9aeae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
.PHONY: clean, mrproper
 
CC = gcc
CXX = g++
LD = ld
LDFLAGS = -T Link.ld -Map Map.txt --oformat=elf32-i386
CFLAGS = -nostdlib -nostartfiles -nodefaultlibs -fno-builtin -fno-stack-protector -Wall -Wextra -Werror -I .
CXXFLAGS = -nostartfiles -nostdlib -fno-exceptions -fno-rtti -I . -I ../Library/Common -I ../Library/Interface -Wall -Werror -Wno-write-strings -funsigned-char -D THIS_IS_MELON_KERNEL -D RANDOM_SEED=1`date +%N`LL -O2
ASM = nasm
ASMFLAGS = -f elf
 
OutFile = Melon.ke
Objects = Core/loader.wtf.o \
		Core/kmain.wtf.o \
		Core/Sys.ns.o \
		Core/Log.ns.o \
		Core/SB.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/Process-sc.class.o \
		TaskManager/Thread.class.o \
		TaskManager/V86/V86Thread.class.o \
		TaskManager/V86/V86.ns.o \
		TaskManager/V86/v86.wtf.o \
		TaskManager/Task.ns.o \
		TaskManager/Task.wtf.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/VirtualTerminal-sc.proto.o \
		VTManager/VT.ns.o \
		Shell/KernelShell.class.o \
		Shell/KernelShell-fs.class.o \
		Shell/KernelShell-sys.class.o \
		Linker/Binary.proto.o \
		Linker/MelonBinary.class.o \
		Linker/ElfBinary.class.o \
		../Library/Common/cppsupport.wtf.o \
		../Library/Common/Bitset.class.o \
		../Library/Common/String.class.o \
		../Library/Common/ByteArray.class.o \
		../Library/Common/WChar.class.o \
		../Library/Common/Rand.ns.o \
		../Library/Common/CMem.ns.o \
		../Library/Common/Heap.class.o \
		../Library/Common/Heap-index.class.o \
		../Library/Common/Mutex.class.o \
		../Library/Common/TextFile.class.o \
		VFS/Partition.class.o \
		VFS/Part.ns.o \
		VFS/VFS.ns.o \
		VFS/FSNode-sc.proto.o \
		VFS/File.class.o \
		VFS/File-sc.class.o \
		VFS/DirectoryNode.class.o \
		UserManager/Usr.ns.o \
		FileSystems/RamFS/RamFS.class.o \
		FileSystems/FAT/FATFS.class.o \
		SyscallManager/IDT.ns.o \
		SyscallManager/Ressource.class.o \
		SyscallManager/Res.ns.o \
		SyscallManager/IDT.wtf.o \
		Devices/Display/VGATextOutput.class.o \
		Devices/Display/GraphicDisplay.proto.o \
		Devices/Display/VESADisplay.class.o \
		Devices/Keyboard/PS2Keyboard.class.o \
		Devices/Floppy/FloppyController.class.o \
		Devices/Floppy/FloppyDrive.class.o \
		Devices/ATA/ATAController.class.o \
		Devices/ATA/ATADrive.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 $(Objects)
	rm -rf *.o
	rm -rf */*.o
	rm -rf */*/*.o
	rm -rf ../Library/Common/*.o
 
mrproper: clean
	echo "* Removing executable : $(OutFile)"
	rm -rf $(OutFile)