Subversion Repositories HelenOS

Rev

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

Rev Author Line No. Line
2145 kebrt 1
#
2
# Copyright (c) 2006 Martin Decky
3
# All rights reserved.
4
#
5
# Redistribution and use in source and binary forms, with or without
6
# modification, are permitted provided that the following conditions
7
# are met:
8
#
9
# - Redistributions of source code must retain the above copyright
10
#   notice, this list of conditions and the following disclaimer.
11
# - Redistributions in binary form must reproduce the above copyright
12
#   notice, this list of conditions and the following disclaimer in the
13
#   documentation and/or other materials provided with the distribution.
14
# - The name of the author may not be used to endorse or promote products
15
#   derived from this software without specific prior written permission.
16
#
17
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
#
28
 
29
include ../../../../version
3024 decky 30
include ../../../Makefile.config
2145 kebrt 31
 
32
## Toolchain configuration
33
#
34
 
3024 decky 35
BFD = elf32-littlearm
36
BFD_NAME = elf32-littlearm
37
BFD_ARCH = arm
2145 kebrt 38
TARGET = arm-linux-gnu
39
TOOLCHAIN_DIR = /usr/local/arm/bin
40
 
3024 decky 41
ifeq ($(COMPILER),gcc_native)
2145 kebrt 42
	CC = gcc
43
	AS = as
44
	LD = ld
45
	OBJCOPY = objcopy
46
	OBJDUMP = objdump
3024 decky 47
endif
48
 
49
ifeq ($(COMPILER),gcc_cross)
2145 kebrt 50
	CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc
51
	AS = $(TOOLCHAIN_DIR)/$(TARGET)-as
52
	LD = $(TOOLCHAIN_DIR)/$(TARGET)-ld
53
	OBJCOPY = $(TOOLCHAIN_DIR)/$(TARGET)-objcopy
54
	OBJDUMP = $(TOOLCHAIN_DIR)/$(TARGET)-objdump
55
endif
56
 
57
CFLAGS = -DRELEASE=\"$(RELEASE)\" -I. -I../../../generic -I../../.. -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 
58
 
59
ifdef REVISION
60
	CFLAGS += "-DREVISION=\"$(REVISION)\""
61
endif
62
 
63
ifdef TIMESTAMP
64
	CFLAGS += "-DTIMESTAMP=\"$(TIMESTAMP)\""
65
endif
66
 
2322 kebrt 67
ifdef MACHINE
68
	CFLAGS += "-DMACHINE=$(MACHINE)"
69
endif
70
 
2145 kebrt 71
SOURCES = \
72
	main.c \
73
	boot.S \
74
	asm.S \
2198 jancik 75
	mm.c \
3024 decky 76
	print/gxemul.c \
77
	_components.c \
2145 kebrt 78
	../../../generic/printf.c \
79
	../../../genarch/division.c
80
 
81
COMPONENTS = \
82
	$(KERNELDIR)/kernel.bin \
2479 jermar 83
	$(USPACEDIR)/srv/ns/ns \
3024 decky 84
	$(USPACEDIR)/srv/fb/fb \
2479 jermar 85
	$(USPACEDIR)/srv/kbd/kbd \
86
	$(USPACEDIR)/srv/console/console \
2551 cejka 87
	$(USPACEDIR)/srv/vfs/vfs \
2649 jermar 88
	$(USPACEDIR)/srv/fs/tmpfs/tmpfs \
2551 cejka 89
	$(USPACEDIR)/srv/fs/fat/fat \
90
	$(USPACEDIR)/srv/devmap/devmap \
2479 jermar 91
	$(USPACEDIR)/app/init/init \
3024 decky 92
	$(USPACEDIR)/app/tetris/tetris \
2479 jermar 93
	$(USPACEDIR)/app/tester/tester \
3024 decky 94
	$(USPACEDIR)/app/klog/klog
2145 kebrt 95
 
96
OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
97
COMPONENT_OBJECTS := $(addsuffix .o,$(basename $(notdir $(COMPONENTS))))
98
 
99
.PHONY: all clean depend
100
 
101
all: image.boot
102
 
103
-include Makefile.depend
104
 
3024 decky 105
image.boot: depend _components.h _link.ld $(COMPONENT_OBJECTS) $(OBJECTS)
106
	$(LD) -no-check-sections -N -T _link.ld $(COMPONENT_OBJECTS) $(OBJECTS) -o $@
2145 kebrt 107
 
108
depend:
109
	-makedepend $(DEFS) $(CFLAGS) -f - $(SOURCES) > Makefile.depend 2> /dev/null
110
 
111
clean:
3024 decky 112
	-rm -f _components.h _components.c _link.ld $(COMPONENT_OBJECTS) $(OBJECTS) image.boot Makefile.depend
2145 kebrt 113
 
3024 decky 114
_components.h _components.c _link.ld $(COMPONENT_OBJECTS): $(COMPONENTS)
115
	../../../tools/pack.py $(OBJCOPY) $(BFD_NAME) $(BFD) $(BFD_ARCH) 4096 $(COMPONENTS)
2145 kebrt 116
 
117
%.o: %.S
118
	$(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@
119
 
120
%.o: %.c
121
	$(CC) $(DEFS) $(CFLAGS) -c $< -o $@