Subversion Repositories HelenOS

Rev

Rev 4354 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
491 decky 1
#
2071 jermar 2
# Copyright (c) 2005 Martin Decky
2955 svoboda 3
# Copyright (c) 2008 Jiri Svoboda
491 decky 4
# All rights reserved.
5
#
6
# Redistribution and use in source and binary forms, with or without
7
# modification, are permitted provided that the following conditions
8
# are met:
9
#
10
# - Redistributions of source code must retain the above copyright
11
#   notice, this list of conditions and the following disclaimer.
12
# - Redistributions in binary form must reproduce the above copyright
13
#   notice, this list of conditions and the following disclaimer in the
14
#   documentation and/or other materials provided with the distribution.
15
# - The name of the author may not be used to endorse or promote products
16
#   derived from this software without specific prior written permission.
17
#
18
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
#
447 decky 29
 
491 decky 30
## Common compiler flags
31
#
447 decky 32
 
2528 jermar 33
LIBC_PREFIX = $(shell pwd)
1073 cejka 34
SOFTINT_PREFIX = ../softint
447 decky 35
 
502 decky 36
## Setup toolchain
491 decky 37
#
447 decky 38
 
502 decky 39
include $(LIBC_PREFIX)/Makefile.toolchain
4354 svoboda 40
-include rtld/arch/$(UARCH)/Makefile.inc
447 decky 41
 
4354 svoboda 42
CFLAGS += -Irtld/include -I../../srv/loader/include -D__32_BITS__
3564 svoboda 43
PIC_CFLAGS := $(CFLAGS) -fPIC -D__IN_SHARED_LIBC__
1451 cejka 44
 
491 decky 45
## Sources
46
#
47
 
48
GENERIC_SOURCES = \
504 decky 49
	generic/libc.c \
1180 jermar 50
	generic/ddi.c \
1237 jermar 51
	generic/as.c \
1308 jermar 52
	generic/cap.c \
4338 svoboda 53
	generic/console.c \
4347 svoboda 54
	generic/event.c \
4337 svoboda 55
	generic/mem.c \
999 palkovsky 56
	generic/string.c \
2586 jermar 57
	generic/fibril.c \
3171 svoboda 58
	generic/pcb.c \
3400 svoboda 59
	generic/smc.c \
1065 jermar 60
	generic/thread.c \
2586 jermar 61
	generic/tls.c \
1175 jermar 62
	generic/task.c \
1111 jermar 63
	generic/futex.c \
3403 svoboda 64
	generic/io/asprintf.c \
974 cejka 65
	generic/io/io.c \
1234 cejka 66
	generic/io/printf.c \
4338 svoboda 67
	generic/io/fprintf.c \
68
	generic/io/stdio.c \
1363 vana 69
	generic/io/stream.c \
1234 cejka 70
	generic/io/sprintf.c \
71
	generic/io/snprintf.c \
72
	generic/io/vprintf.c \
73
	generic/io/vsprintf.c \
74
	generic/io/vsnprintf.c \
75
	generic/io/printf_core.c \
1113 palkovsky 76
	malloc/malloc.c \
1351 palkovsky 77
	generic/sysinfo.c \
1392 palkovsky 78
	generic/ipc.c \
79
	generic/async.c \
3686 svoboda 80
	generic/dlfcn.c \
3474 svoboda 81
	generic/loader.c \
3403 svoboda 82
	generic/getopt.c \
1392 palkovsky 83
	generic/libadt/list.o \
1435 palkovsky 84
	generic/libadt/hash_table.o \
1472 palkovsky 85
	generic/time.c \
86
	generic/err.c \
1505 palkovsky 87
	generic/stdlib.c \
4343 svoboda 88
	generic/kbd.c \
2671 jermar 89
	generic/mman.c \
3448 svoboda 90
	generic/udebug.c \
2753 jermar 91
	generic/vfs/vfs.c \
4354 svoboda 92
	generic/vfs/canonify.c \
93
	rtld/rtld.c \
94
	rtld/elf_load.c \
95
	rtld/dynamic.c \
96
	rtld/module.c \
97
	rtld/symbol.c
491 decky 98
 
4354 svoboda 99
 
805 palkovsky 100
ARCH_SOURCES += \
4342 svoboda 101
	arch/$(UARCH)/src/entry.s \
102
	arch/$(UARCH)/src/thread_entry.s
491 decky 103
 
104
GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES)))
105
ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))
4337 svoboda 106
OBJECTS := $(GENERIC_OBJECTS) $(ARCH_OBJECTS)
107
PIC_OBJECTS := $(addsuffix .pio,$(basename $(OBJECTS)))
491 decky 108
 
4373 svoboda 109
OUTPUT := libc.a
110
 
111
ifeq ($(CONFIG_BUILD_SHARED_LIBC), y)
112
	OUTPUT += libc.pic.a
113
endif
114
 
954 palkovsky 115
.PHONY: all clean depend kerninc
491 decky 116
 
4373 svoboda 117
all: kerninc $(OUTPUT) arch/$(UARCH)/_link.ld
491 decky 118
 
954 palkovsky 119
kerninc:
2479 jermar 120
	ln -sfn ../../../../kernel/generic/include include/kernel
1015 decky 121
	ln -sfn kernel/arch include/arch
4342 svoboda 122
	ln -sfn ../arch/$(UARCH)/include include/libarch
4354 svoboda 123
	ln -sfn ../arch/$(UARCH)/include rtld/include/arch
954 palkovsky 124
 
491 decky 125
-include Makefile.depend
126
 
447 decky 127
clean:
4354 svoboda 128
	-rm -f include/kernel include/arch include/libarch rtld/include/arch libc.a libc.pic.a arch/$(UARCH)/_link.ld Makefile.depend
2955 svoboda 129
	find . \( -name '*.o' -o -name '*.pio' \) -follow -exec rm \{\} \;
447 decky 130
 
1113 palkovsky 131
depend: kerninc
4342 svoboda 132
	-makedepend -f - -- $(DEPEND_DEFS) $(CFLAGS) -- $(ARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null
2955 svoboda 133
	-makedepend $(DEFS) $(PIC_CFLAGS) -o.pio -f - $(ARCH_SOURCES) $(GENERIC_SOURCES) >> Makefile.depend 2> /dev/null
447 decky 134
 
2955 svoboda 135
libc.a: depend $(OBJECTS)
3772 svoboda 136
	$(AR) rc $@ $(LIBS) $(OBJECTS)
447 decky 137
 
2955 svoboda 138
libc.pic.a: depend $(PIC_OBJECTS)
139
	$(AR) rc $@ $(LIBS) $(PIC_OBJECTS)
140
 
4342 svoboda 141
arch/$(UARCH)/_link.ld: arch/$(UARCH)/_link.ld.in
2528 jermar 142
	$(CC) $(DEFS) $(CFLAGS) -DLIBC_PREFIX=$(LIBC_PREFIX) -E -x c $< | grep -v "^\#" > $@
502 decky 143
 
491 decky 144
%.o: %.S
145
	$(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
146
 
447 decky 147
%.o: %.s
491 decky 148
	$(AS) $(AFLAGS) $< -o $@
447 decky 149
 
150
%.o: %.c
491 decky 151
	$(CC) $(DEFS) $(CFLAGS) -c $< -o $@
2955 svoboda 152
 
153
%.pio: %.S
154
	$(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
155
 
156
%.pio: %.s
157
	$(AS) $(AFLAGS) $< -o $@
158
 
159
%.pio: %.c
160
	$(CC) $(DEFS) $(PIC_CFLAGS) -c $< -o $@