source: mainline/src/Makefile@ 788ccb04

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 788ccb04 was 8491c48, checked in by Sergey Bondari <bondari@…>, 20 years ago

Generic quicksort and bubble sort implementation.
ACPI MADT parser now uses qsort() for index sorting

  • Property mode set to 100644
File size: 2.6 KB
Line 
1include Makefile.config
2include ../arch/$(ARCH)/Makefile.inc
3
4sources=cpu/cpu.c \
5 main/main.c \
6 main/kinit.c \
7 main/uinit.c \
8 proc/scheduler.c \
9 proc/thread.c \
10 proc/task.c \
11 mm/heap.c \
12 mm/frame.c \
13 mm/page.c \
14 mm/tlb.c \
15 mm/vm.c \
16 lib/func.c \
17 lib/list.c \
18 lib/memstr.c \
19 lib/the.c \
20 lib/sort.c \
21 debug/print.c \
22 debug/symtab.c \
23 time/clock.c \
24 time/timeout.c \
25 time/delay.c \
26 preempt/preemption.c \
27 synch/spinlock.c \
28 synch/condvar.c \
29 synch/rwlock.c \
30 synch/mutex.c \
31 synch/semaphore.c \
32 synch/waitq.c \
33 smp/ipi.c \
34 fb/font-8x16.c
35
36# CFLAGS options same for all targets
37CFLAGS+=-nostdinc -I../include -Werror-implicit-function-declaration -Wmissing-prototypes -Werror
38
39ifdef DEBUG_SPINLOCK
40CFLAGS+=-D$(DEBUG_SPINLOCK)
41endif
42
43ifdef USERSPACE
44CFLAGS+=-D$(USERSPACE)
45endif
46
47ifdef TEST
48test_objects:=$(addsuffix .o,$(basename ../test/$(TEST_DIR)/$(TEST_FILE)))
49CFLAGS+=-D$(TEST)
50endif
51arch_objects:=$(addsuffix .o,$(basename $(arch_sources)))
52objects:=$(addsuffix .o,$(basename $(sources)))
53
54.PHONY : all config depend build clean dist-clean boot
55
56all: dist-clean config depend build
57
58-include Makefile.depend
59
60config:
61 find . ../include -name arch -type l -exec rm \{\} \;
62 ln -s ../arch/$(ARCH)/src arch
63 ln -s ../arch/$(ARCH)/include ../include/arch
64
65depend:
66 $(CC) $(CFLAGS) -M $(arch_sources) $(sources) >Makefile.depend
67
68build: kernel.bin boot
69
70clean:
71 find . ../arch/$(ARCH)/src ../test -name '*.o' -exec rm \{\} \;
72 -rm *.bin kernel.map kernel.map.pre kernel.objdump debug/real_map.bin
73 $(MAKE) -C ../arch/$(ARCH)/boot clean
74
75dist-clean:
76 find . ../include -name arch -type l -exec rm \{\} \;
77 -rm Makefile.depend
78 -$(MAKE) clean
79
80debug/real_map.bin: $(arch_objects) $(objects) $(test_objects) ../arch/$(ARCH)/_link.ld
81 $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab Makefile debug/empty_map.o
82 $(LD) -T ../arch/$(ARCH)/_link.ld $(LFLAGS) $(arch_objects) $(objects) $(test_objects) debug/empty_map.o -o $@ -Map kernel.map.pre
83 $(OBJDUMP) -t $(arch_objects) $(objects) $(test_objects) > kernel.objdump
84 ../tools/genmap.py kernel.map.pre kernel.objdump debug/real_map.bin
85
86debug/real_map.o: debug/real_map.bin
87 $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab $< $@
88
89
90kernel.bin: $(arch_objects) $(objects) $(test_objects) ../arch/$(ARCH)/_link.ld debug/real_map.o
91 $(LD) -T ../arch/$(ARCH)/_link.ld $(LFLAGS) $(arch_objects) $(objects) $(test_objects) debug/real_map.o -o $@ -Map kernel.map
92
93%.o: %.S
94 $(CC) $(ASFLAGS) $(CFLAGS) -c $< -o $@
95
96%.o: %.s
97 $(AS) $(ASFLAGS) $< -o $@
98
99%.o: %.c
100 $(CC) $(CFLAGS) -c $< -o $@
101
102KS=`cat kernel.bin | wc -c`
103
104boot:
105 $(MAKE) -C ../arch/$(ARCH)/boot build KERNEL_SIZE=$(KS)
Note: See TracBrowser for help on using the repository browser.