Subversion Repositories HelenOS

Rev

Rev 3022 | Rev 4156 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3022 Rev 4055
Line 25... Line 25...
25
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
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.
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
#
27
#
28
 
28
 
29
include ../../../../version
29
include ../../../../version
30
include ../../../Makefile.config
30
-include ../../../../Makefile.config
31
 
31
 
32
## Toolchain configuration
32
## Toolchain configuration
33
#
33
#
34
 
34
 
-
 
35
ifndef CROSS_PREFIX
-
 
36
	CROSS_PREFIX = /usr/local
-
 
37
endif
-
 
38
 
-
 
39
ifeq ($(IMAGE),binary)
-
 
40
	LD_IN = binary
-
 
41
endif
-
 
42
 
-
 
43
ifeq ($(IMAGE),ecoff)
-
 
44
	LD_IN = ecoff
-
 
45
endif
-
 
46
 
-
 
47
BFD_NAME = elf32-tradlittlemips
-
 
48
BFD_ARCH = mips
35
TARGET = mipsel-linux-gnu
49
TARGET = mipsel-linux-gnu
36
TOOLCHAIN_DIR = /usr/local/mipsel/bin
50
TOOLCHAIN_DIR = $(CROSS_PREFIX)/mipsel/bin
37
 
51
 
38
ifeq ($(COMPILER),gcc_native)
52
ifeq ($(COMPILER),gcc_native)
39
	CC = gcc
53
	CC = gcc
40
	AS = as
54
	AS = as
41
	LD = ld
55
	LD = ld
42
	OBJCOPY = objcopy
56
	OBJCOPY = objcopy
43
	OBJDUMP = objdump
57
	OBJDUMP = objdump
44
endif
58
endif
45
 
59
 
46
ifeq ($(COMPILER),icc_native)
-
 
47
	CC = icc
-
 
48
	AS = as
-
 
49
	LD = ld
-
 
50
	OBJCOPY = objcopy
-
 
51
	OBJDUMP = objdump
-
 
52
endif
-
 
53
 
-
 
54
ifeq ($(COMPILER),gcc_cross)
60
ifeq ($(COMPILER),gcc_cross)
55
	CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc
61
	CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc
56
	AS = $(TOOLCHAIN_DIR)/$(TARGET)-as
62
	AS = $(TOOLCHAIN_DIR)/$(TARGET)-as
57
	LD = $(TOOLCHAIN_DIR)/$(TARGET)-ld
63
	LD = $(TOOLCHAIN_DIR)/$(TARGET)-ld
58
	OBJCOPY = $(TOOLCHAIN_DIR)/$(TARGET)-objcopy
64
	OBJCOPY = $(TOOLCHAIN_DIR)/$(TARGET)-objcopy
59
	OBJDUMP = $(TOOLCHAIN_DIR)/$(TARGET)-objdump
65
	OBJDUMP = $(TOOLCHAIN_DIR)/$(TARGET)-objdump
60
endif
66
endif
61
 
67
 
62
CFLAGS = -DRELEASE=\"$(RELEASE)\" -I. -I../../../generic -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -mno-abicalls -G 0 -fno-zero-initialized-in-bss -mhard-float -mips3
68
CFLAGS = -DRELEASE=$(RELEASE) -I. -I../../../generic -imacros ../../../../config.h -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -mno-abicalls -G 0 -fno-zero-initialized-in-bss -mhard-float -mips3 -pipe
63
 
-
 
64
ifdef REVISION
-
 
65
	CFLAGS += "-DREVISION=\"$(REVISION)\""
-
 
66
endif
-
 
67
 
-
 
68
ifdef TIMESTAMP
-
 
69
	CFLAGS += "-DTIMESTAMP=\"$(TIMESTAMP)\""
-
 
70
endif
-
 
71
 
69
 
72
SOURCES = \
70
SOURCES = \
73
	main.c \
71
	main.c \
74
	msim.c \
72
	msim.c \
-
 
73
	_components.c \
75
	../../../generic/printf.c \
74
	../../../generic/printf.c \
-
 
75
	../../../generic/string.c \
76
	asm.S \
76
	asm.S \
77
	boot.S
77
	boot.S
78
 
78
 
79
COMPONENTS = \
79
COMPONENTS = \
80
	$(KERNELDIR)/kernel.bin \
80
	$(KERNELDIR)/kernel.bin \
81
	$(USPACEDIR)/srv/ns/ns \
81
	$(USPACEDIR)/srv/ns/ns \
-
 
82
	$(USPACEDIR)/srv/loader/loader \
-
 
83
	$(USPACEDIR)/app/init/init \
-
 
84
	$(USPACEDIR)/srv/devmap/devmap \
-
 
85
	$(USPACEDIR)/srv/rd/rd \
-
 
86
	$(USPACEDIR)/srv/vfs/vfs 
-
 
87
ifeq ($(RDFMT),tmpfs)
-
 
88
	COMPONENTS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs
-
 
89
endif
-
 
90
ifeq ($(RDFMT),fat)
-
 
91
	COMPONENTS += $(USPACEDIR)/srv/fs/fat/fat
-
 
92
endif
-
 
93
 
-
 
94
RD_SRVS = \
82
	$(USPACEDIR)/srv/fb/fb \
95
	$(USPACEDIR)/srv/fb/fb \
83
	$(USPACEDIR)/srv/kbd/kbd \
96
	$(USPACEDIR)/srv/kbd/kbd \
84
	$(USPACEDIR)/srv/console/console \
97
	$(USPACEDIR)/srv/console/console \
85
	$(USPACEDIR)/srv/vfs/vfs \
-
 
86
	$(USPACEDIR)/srv/fs/tmpfs/tmpfs \
98
	$(USPACEDIR)/srv/fs/tmpfs/tmpfs \
87
	$(USPACEDIR)/srv/fs/fat/fat \
99
	$(USPACEDIR)/srv/fs/fat/fat
88
	$(USPACEDIR)/srv/devmap/devmap \
-
 
-
 
100
 
89
	$(USPACEDIR)/app/init/init \
101
RD_APPS = \
90
	$(USPACEDIR)/app/tetris/tetris \
102
	$(USPACEDIR)/app/tetris/tetris \
91
	$(USPACEDIR)/app/tester/tester \
103
	$(USPACEDIR)/app/tester/tester \
-
 
104
	$(USPACEDIR)/app/trace/trace \
-
 
105
	$(USPACEDIR)/app/bdsh/bdsh \
92
	$(USPACEDIR)/app/klog/klog
106
	$(USPACEDIR)/app/klog/klog
93
 
107
 
94
OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
108
OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
95
COMPONENT_OBJECTS := $(addsuffix .o,$(basename $(notdir $(COMPONENTS))))
109
COMPONENT_OBJECTS := $(addsuffix .o,$(basename $(notdir $(COMPONENTS))))
96
 
110
 
Line 98... Line 112...
98
 
112
 
99
all: image.boot
113
all: image.boot
100
 
114
 
101
-include Makefile.depend
115
-include Makefile.depend
102
 
116
 
103
image.boot: depend _components.h _link.ld $(COMPONENT_OBJECTS) $(OBJECTS)
117
image.boot: depend _components.h _link.ld $(COMPONENT_OBJECTS) initrd.o $(OBJECTS)
104
	$(LD) -no-check-sections -N -T _link.ld $(COMPONENT_OBJECTS) $(OBJECTS) -o $@
118
	$(LD) -no-check-sections -N -T _link.ld $(COMPONENT_OBJECTS) initrd.o $(OBJECTS) -o $@
105
 
119
 
106
depend:
120
depend:
107
	-makedepend $(DEFS) $(CFLAGS) -f - $(SOURCES) > Makefile.depend 2> /dev/null
121
	-makedepend -f - -- $(DEFS) $(CFLAGS) -- $(SOURCES) > Makefile.depend 2> /dev/null
108
 
122
 
109
clean:
123
clean:
-
 
124
	-for file in $(RD_SRVS) ; do \
-
 
125
		rm -f $(USPACEDIR)/dist/srv/`basename $$file` ; \
-
 
126
	done
-
 
127
	-for file in $(RD_APPS) ; do \
-
 
128
		rm -f $(USPACEDIR)/dist/app/`basename $$file` ; \
-
 
129
	done
110
	-rm -f _components.h _link.ld $(COMPONENT_OBJECTS) $(OBJECTS) image.boot Makefile.depend
130
	-rm -f _components.h _components.c _link.ld _link.ld.in $(COMPONENT_OBJECTS) initrd.o $(OBJECTS) initrd.img image.boot Makefile.depend
-
 
131
 
-
 
132
_components.h _components.c _link.ld $(COMPONENT_OBJECTS) initrd.o: $(COMPONENTS) $(RD_SRVS) $(RD_APPS) _link.ld.in
-
 
133
	for file in $(RD_SRVS) ; do \
-
 
134
		cp $$file $(USPACEDIR)/dist/srv/ ; \
-
 
135
	done
-
 
136
	for file in $(RD_APPS) ; do \
-
 
137
		cp $$file $(USPACEDIR)/dist/app/ ; \
-
 
138
	done
-
 
139
ifeq ($(RDFMT),tmpfs)
-
 
140
	../../../../tools/mktmpfs.py $(USPACEDIR)/dist/ initrd.fs
-
 
141
endif
-
 
142
ifeq ($(RDFMT),fat)
-
 
143
	../../../../tools/mkfat.py $(USPACEDIR)/dist/ initrd.fs
-
 
144
endif
-
 
145
	../../../../tools/mkhord.py 16384 initrd.fs initrd.img
-
 
146
	rm initrd.fs
-
 
147
	../../../tools/pack.py $(OBJCOPY) $(BFD_NAME) $(BFD_ARCH) 16384 "unsigned int" $(COMPONENTS) ./initrd.img
111
 
148
 
112
_components.h _link.ld $(COMPONENT_OBJECTS): $(COMPONENTS)
149
_link.ld.in: _link.ld.in.$(LD_IN)
113
	./pack $(IMAGE) $(OBJCOPY) $(COMPONENTS)
150
	cp $< $@
114
 
151
 
115
%.o: %.S
152
%.o: %.S
116
	$(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@
153
	$(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@
117
 
154
 
118
%.o: %.c
155
%.o: %.c