source: trunk/boot/tsar_mips32/Makefile @ 610

Last change on this file since 610 was 572, checked in by alain, 5 years ago

Introduce the cluster_info[x][y] in the boot_info.h structure for the TSAR architecture.

File size: 5.0 KB
RevLine 
[439]1#############################################################################
2#                  ALMOS-MKH Makefile for BOOTLOADER TSAR                   #
3#############################################################################
4
5-include ../../params-soft.mk
6ifeq ($(ARCH_NAME),)
7$(error Please define in ARCH_NAME parameter in params-soft.mk!)
8endif
9
10-include ../../params-hard.mk
11
12# Rules that don't build target files
13# always out-of-date, need to be regenerated everytime they are called
14.PHONY: compile                         \
15        ../../hard_config.h           \
16                dirs                                \
17                build/boot.elf      \
18
19# Macros to be processed by the C preprocessor.
20MACROS           = -DARCHINFO_PATHNAME="\"arch_info.bin\""              \
21                           -DKERNEL_PATHNAME="\"/bin/kernel/kernel.elf\""
22
23# Objects to be linked for boot.elf generation
24BOOT_OBJS       = build/boot.o            \
[572]25              build/boot_fat32.o      \
26              build/boot_utils.o      \
27              build/boot_entry.o      \
28              build/boot_tty_driver.o \
29              build/boot_hba_driver.o \
30              build/boot_bdv_driver.o \
31              build/boot_mmc_driver.o   
[439]32
33# List of directories to be searched for included files
34# when compiling for boot.elf generation
[572]35BOOT_INCLUDE = -I.               \
36                -I../../tools/arch_info  \
37                -I$(HAL_ARCH)/core       \
38                -I../..                  \
39                -I$(KERNEL)              \
[557]40                -I$(KERNEL)/kern
[439]41
42# Rule to generate boot.elf, kernel.elf, ksh.elf, sort.elf and update virtual disk.
43compile: dirs                     \
44         build/boot.elf
45
46# Rule to create the build directories.
47dirs:
48        @mkdir -p build
49
50clean:
51        rm -rf build
52
53../../hard_config.h:
54        $(MAKE) -C ../../ hard_config.h
55
56################################################
57# Rules to compile boot drivers used by boot.elf
[572]58build/boot_tty_driver.o: boot_tty_driver.c                   \
59                         boot_tty_driver.h                   \
60                         boot_utils.h                        \
61                         boot_config.h                       \
62                                                 $(HAL_ARCH)/core/hal_kernel_types.h \
63                                                 ../../hard_config.h
[439]64        $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $<
65        $(DU) -D $@ > $@.txt
66
67build/boot_bdv_driver.o:        boot_bdv_driver.c \
68                                                                boot_bdv_driver.h \
69                                                                boot_utils.h      \
70                                                                boot_config.h     \
[457]71                                                                $(HAL_ARCH)/core/hal_kernel_types.h        \
[439]72                                                                ../../hard_config.h
73        $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $<
74        $(DU) -D $@ > $@.txt
75
76build/boot_hba_driver.o:        boot_hba_driver.c \
77                                                                boot_hba_driver.h \
78                                                                boot_utils.h      \
79                                                                boot_config.h     \
[457]80                                                                $(HAL_ARCH)/core/hal_kernel_types.h        \
[439]81                                                                ../../hard_config.h
82        $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $<
83        $(DU) -D $@ > $@.txt
84
[547]85build/boot_spi_driver.o:        boot_spi_driver.c \
86                                                                boot_spi_driver.h \
87                                                                boot_utils.h      \
88                                                                $(HAL_ARCH)/core/hal_kernel_types.h        \
89                                                                ../../hard_config.h
90        $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $<
91        $(DU) -D $@ > $@.txt
92
[439]93build/boot_mmc_driver.o:        boot_mmc_driver.c \
94                                                                boot_mmc_driver.h \
95                                                                boot_utils.h      \
96                                                                boot_config.h     \
[457]97                                                                $(HAL_ARCH)/core/hal_kernel_types.h        \
[439]98                                                                ../../hard_config.h
99        $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $<
100        $(DU) -D $@ > $@.txt
101
102##############################
[547]103# Rule to compile boot_spi_utils.o
104build/boot_spi_utils.o: boot_spi_utils.c       \
105                                                                boot_spi_utils.h       \
106                                                                $(HAL_ARCH)/core/hal_kernel_types.h         \
107                                                                ../../hard_config.h
108        $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $<
109        $(DU) -D $@ > $@.txt
110
111##############################
[439]112# Rule to compile boot_fat32.o
113build/boot_fat32.o: boot_fat32.c      \
114                                                                boot_fat32.h      \
115                                                                boot_utils.h      \
116                                                                boot_config.h     \
[457]117                                                                $(HAL_ARCH)/core/hal_kernel_types.h        \
[439]118                                                                ../../hard_config.h                     
119        $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $<
120        $(DU) -D $@ > $@.txt
121
122##############################
123# Rule to compile boot_utils.o
124build/boot_utils.o: boot_utils.c       \
125                                                                boot_utils.h       \
126                                                                boot_tty_driver.h  \
[457]127                                                                $(HAL_ARCH)/core/hal_kernel_types.h         \
[439]128                                                                ../../hard_config.h
129        $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $<
130        $(DU) -D $@ > $@.txt
131
132########################
133# Rule to compile boot.o
134build/boot.o:                           boot.c             \
135                                                                boot_utils.h       \
[547]136                                                                boot_spi_utils.h   \
[439]137                                                                boot_fat32.h       \
138                                                                boot_tty_driver.h  \
139                                                                boot_hba_driver.h  \
140                                                                boot_bdv_driver.h  \
141                                                                boot_mmc_driver.h  \
[547]142                                                                boot_spi_driver.h  \
[439]143                                                                boot_config.h      \
[457]144                                                                $(HAL_ARCH)/core/hal_kernel_types.h         \
[439]145                                                                ../../hard_config.h                             
146        $(CC) $(BOOT_INCLUDE) $(CFLAGS) $(MACROS) -c -o $@ $<
147        $(DU) -D $@ > $@.txt
148
149##############################
150# Rule to compile boot_entry.o
151build/boot_entry.o: boot_entry.S   \
152                                                                boot_config.h  \
153                                                                ../../hard_config.h
154        $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $<
155        $(DU) -D $@ > $@.txt
156
157#####################################################################
158# Rule to generate boot.elf
159build/boot.elf: $(BOOT_OBJS) boot.ld
160        $(LD) -o $@ -T boot.ld $(BOOT_OBJS)
161        $(DU) -D $@ > $@.txt
Note: See TracBrowser for help on using the repository browser.