source: mainline/boot/arch/ia64/loader/Makefile@ f1af679

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since f1af679 was f1af679, checked in by Jakub Vana <jakub.vana@…>, 18 years ago

IA64: crosscompilation support for GNU-EFI and hello.efi

  • Property mode set to 100644
File size: 4.0 KB
Line 
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
29include ../../../../version
30include ../../../Makefile.config
31
32## Toolchain configuration
33#
34
35TARGET = ia64-pc-linux-gnu
36TOOLCHAIN_DIR = /usr/local/ia64/bin
37
38ifeq ($(COMPILER),gcc_native)
39 CC = gcc
40 AS = as
41 LD = ld
42 OBJCOPY = objcopy
43 OBJDUMP = objdump
44 GEFI_PREXIX =
45endif
46
47ifeq ($(COMPILER),icc_native)
48 CC = icc
49 AS = as
50 LD = ld
51 OBJCOPY = objcopy
52 OBJDUMP = objdump
53endif
54
55ifeq ($(COMPILER),gcc_cross)
56 CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc
57 AS = $(TOOLCHAIN_DIR)/$(TARGET)-as
58 LD = $(TOOLCHAIN_DIR)/$(TARGET)-ld
59 OBJCOPY = $(TOOLCHAIN_DIR)/$(TARGET)-objcopy
60 OBJDUMP = $(TOOLCHAIN_DIR)/$(TARGET)-objdump
61 GEFI_PREFIX = $(TOOLCHAIN_DIR)/$(TARGET)-
62endif
63
64#-mno-pic means do not use gp + imm22 to address data
65CFLAGS = -DRELEASE=\"$(RELEASE)\" -I. -I../../../generic -I../../../genarch -I../../../../kernel/generic/include -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -fno-unwind-tables -mfixed-range=f32-f127 -mno-pic
66
67ifdef REVISION
68 CFLAGS += "-DREVISION=\"$(REVISION)\""
69endif
70
71ifdef TIMESTAMP
72 CFLAGS += "-DTIMESTAMP=\"$(TIMESTAMP)\""
73endif
74
75SOURCES = \
76 main.c \
77 ../../../generic/printf.c \
78 ../../../generic/string.c \
79 ../../../genarch/balloc.c \
80 asm.S \
81 boot.S
82
83COMPONENTS = \
84 $(KERNELDIR)/kernel.bin \
85 $(USPACEDIR)/srv/ns/ns \
86 $(USPACEDIR)/srv/fb/fb \
87 $(USPACEDIR)/srv/kbd/kbd \
88 $(USPACEDIR)/srv/console/console \
89 $(USPACEDIR)/srv/vfs/vfs \
90 $(USPACEDIR)/srv/fs/tmpfs/tmpfs \
91 $(USPACEDIR)/srv/fs/fat/fat \
92 $(USPACEDIR)/srv/devmap/devmap \
93 $(USPACEDIR)/app/init/init \
94 $(USPACEDIR)/app/tetris/tetris \
95 $(USPACEDIR)/app/tester/tester \
96 $(USPACEDIR)/app/klog/klog
97
98
99OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
100COMPONENT_OBJECTS := $(addsuffix .o,$(basename $(notdir $(COMPONENTS))))
101
102.PHONY: all clean depend
103
104all: hello.efi disasm
105
106-include Makefile.depend
107
108
109hello.efi: image.boot
110 make -C gefi/HelenOS PREFIX=$(GEFI_PREFIX)
111 cp gefi/HelenOS/hello.efi ../../../../
112# cp gefi/HelenOS/hello.efi /boot/efi/
113 cp gefi/HelenOS/image.bin ../../../../
114
115image.boot: depend _components.h _link.ld $(COMPONENT_OBJECTS) $(OBJECTS)
116 $(LD) -Map boot.map -no-check-sections -N -T _link.ld $(COMPONENT_OBJECTS) $(OBJECTS) -o $@
117
118depend:
119 -makedepend $(DEFS) $(CFLAGS) -f - $(SOURCES) > Makefile.depend 2> /dev/null
120
121clean:
122 -rm -f _components.h _link.ld $(COMPONENT_OBJECTS) $(OBJECTS) image.boot boot.disasm Makefile.depend
123 make -C gefi/HelenOS clean
124
125_components.h _link.ld $(COMPONENT_OBJECTS): $(COMPONENTS)
126 ./pack $(IMAGE) $(OBJCOPY) $(COMPONENTS)
127
128%.o: %.S
129 $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@
130
131%.o: %.c
132 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@
133
134disasm: image.boot
135 $(OBJDUMP) -d image.boot > boot.disasm
Note: See TracBrowser for help on using the repository browser.