Subversion Repositories HelenOS-historic

Rev

Rev 376 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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