source: trunk/hal/tsar_mips32/Makefile @ 440

Last change on this file since 440 was 440, checked in by alain, 6 years ago

1/ Fix a bug in the Multithreaded "sort" applicationr:
The pthread_create() arguments must be declared as global variables.
2/ The exit syscall can be called by any thread of a process..

File size: 4.0 KB
RevLine 
[439]1#############################################################################
2#                  HAL Makefile for Tsar-MIPS32                             #
3#############################################################################
4
5-include ../../params-soft.mk
6ifeq ($(ARCH_NAME),)
7$(error Please define in ARCH_NAME parameter in params-soft.mk!)
8endif
9
10LIBGCC = -L$(shell $(CC) -print-libgcc-file-name | sed 's/libgcc.a//') #todo ?
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                dirs                                \
16                clean                               \
17
18DRIVERS_OBJS = $(HAL_ARCH)/build/drivers/soclib_tty.o  \
19               $(HAL_ARCH)/build/drivers/soclib_bdv.o  \
20               $(HAL_ARCH)/build/drivers/soclib_hba.o  \
21               $(HAL_ARCH)/build/drivers/soclib_mmc.o  \
22               $(HAL_ARCH)/build/drivers/soclib_pic.o  \
23               $(HAL_ARCH)/build/drivers/soclib_nic.o  \
24               $(HAL_ARCH)/build/drivers/soclib_dma.o  \
25               $(HAL_ARCH)/build/drivers/soclib_iob.o
26
27CORE_OBJS    = $(HAL_ARCH)/build/core/hal_special.o      \
[440]28               $(HAL_ARCH)/build/core/hal_context.o      \
29               $(HAL_ARCH)/build/core/hal_atomic.o       \
30               $(HAL_ARCH)/build/core/hal_remote.o       \
31               $(HAL_ARCH)/build/core/hal_uspace.o       \
32               $(HAL_ARCH)/build/core/hal_irqmask.o      \
33               $(HAL_ARCH)/build/core/hal_gpt.o          \
34               $(HAL_ARCH)/build/core/hal_ppm.o          \
35               $(HAL_ARCH)/build/core/hal_vmm.o          \
36               $(HAL_ARCH)/build/core/hal_exception.o    \
37               $(HAL_ARCH)/build/core/hal_interrupt.o    \
38               $(HAL_ARCH)/build/core/hal_syscall.o      \
39               $(HAL_ARCH)/build/core/hal_drivers.o      \
40               $(HAL_ARCH)/build/core/hal_kentry.o       \
41               $(HAL_ARCH)/build/core/hal_switch.o       \
42               $(HAL_ARCH)/build/core/hal_user.o
[439]43
[440]44HAL_INCLUDE =    -I$(KERNEL)             \
45                 -I$(HAL_ARCH)/drivers   \
46                 -I$(HAL)/generic        \
47                 -I$(HAL_ARCH)/core      \
48                 -I../../tools/arch_info \
49                 -I$(KERNEL)/kern        \
50                 -I$(KERNEL)/mm          \
51                 -I$(KERNEL)/fs          \
52                 -I$(KERNEL)/syscalls    \
53                 -I$(KERNEL)/devices     \
[439]54                 -I$(KERNEL)/libk
55
[440]56##############################
[439]57# Rule to generate .o for HAL.
58compile: dirs $(CORE_OBJS) $(DRIVERS_OBJS)
59
[440]60########################################
[439]61# Rule to create the build directories.
62dirs:
63        @mkdir -p $(HAL_ARCH)/build
64        @mkdir -p $(HAL_ARCH)/build/drivers
65        @mkdir -p $(HAL_ARCH)/build/core
66
67
68##############################
69# rules to compile the drivers
[440]70$(HAL_ARCH)/build/drivers/%.o:  $(HAL_ARCH)/drivers/%.c      \
71                                $(HAL_ARCH)/drivers/%.h      \
72                                $(KERNEL)/kernel_config.h    \
[439]73                                $(HAL_ARCH)/core/hal_types.h
74        $(CC) $(HAL_INCLUDE) $(CFLAGS)  -c -o $@ $<
75
76######################################
77# Rules to generate kernel/hal objects
[440]78$(HAL_ARCH)/build/core/%.o:     $(HAL_ARCH)/core/%.c         \
79                                $(HAL)/generic/%.h           \
80                                $(KERNEL)/kernel_config.h    \
[439]81                                $(HAL_ARCH)/core/hal_types.h
82        $(CC) $(HAL_INCLUDE) $(CFLAGS) -c -o $@ $<
83
84$(HAL_ARCH)/build/core/hal_kentry.o:  $(HAL_ARCH)/core/hal_kentry.S \
[440]85                                      $(HAL_ARCH)/core/hal_kentry.h \
86                                      $(KERNEL)/kernel_config.h     \
87                                      $(HAL_ARCH)/core/hal_types.h
[439]88        $(CC) $(HAL_INCLUDE) $(CFLAGS) -c -o $@ $<
89
90$(HAL_ARCH)/build/core/hal_switch.o:  $(HAL_ARCH)/core/hal_switch.S \
[440]91                                      $(HAL)/generic/hal_switch.h
[439]92        $(CC) $(HAL_INCLUDE) $(CFLAGS) -c -o $@ $<
93        $(DU) -D $@ > $@.txt
94
95clean:
96        rm -rf $(HAL_ARCH)/build/*
Note: See TracBrowser for help on using the repository browser.