Subversion Repositories HelenOS

Rev

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

Rev 3424 Rev 3425
Line 30... Line 30...
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
 
35
BFD_NAME = elf32-powerpc
39
BFD_NAME = elf32-powerpc
36
BFD_ARCH = powerpc:common
40
BFD_ARCH = powerpc:common
37
TARGET = ppc-linux-gnu
41
TARGET = ppc-linux-gnu
38
TOOLCHAIN_DIR = /usr/local/ppc/bin
42
TOOLCHAIN_DIR = $(CROSS_PREFIX)/ppc/bin
39
 
43
 
40
ifeq ($(COMPILER),gcc_native)
44
ifeq ($(COMPILER),gcc_native)
41
	CC = gcc
45
	CC = gcc
42
	AS = as
46
	AS = as
43
	LD = ld
47
	LD = ld
Line 73... Line 77...
73
	boot.S
77
	boot.S
74
 
78
 
75
COMPONENTS = \
79
COMPONENTS = \
76
	$(KERNELDIR)/kernel.bin \
80
	$(KERNELDIR)/kernel.bin \
77
	$(USPACEDIR)/srv/ns/ns \
81
	$(USPACEDIR)/srv/ns/ns \
-
 
82
	$(USPACEDIR)/srv/loader/loader \
78
	$(USPACEDIR)/app/init/init \
83
	$(USPACEDIR)/app/init/init \
79
	$(USPACEDIR)/srv/devmap/devmap \
84
	$(USPACEDIR)/srv/devmap/devmap \
80
	$(USPACEDIR)/srv/rd/rd \
85
	$(USPACEDIR)/srv/rd/rd \
81
	$(USPACEDIR)/srv/vfs/vfs \
86
	$(USPACEDIR)/srv/vfs/vfs 
-
 
87
ifeq ($(RDFMT),tmpfs)
82
	$(USPACEDIR)/srv/fs/tmpfs/tmpfs
88
	COMPONENTS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs
-
 
89
endif
-
 
90
ifeq ($(RDFMT),fat)
-
 
91
	COMPONENTS += $(USPACEDIR)/srv/fs/fat/fat
-
 
92
endif
83
 
93
 
84
RD_TASKS = \
94
RD_SRVS = \
85
	$(USPACEDIR)/srv/fb/fb \
95
	$(USPACEDIR)/srv/fb/fb \
86
	$(USPACEDIR)/srv/kbd/kbd \
96
	$(USPACEDIR)/srv/kbd/kbd \
87
	$(USPACEDIR)/srv/console/console \
97
	$(USPACEDIR)/srv/console/console \
-
 
98
	$(USPACEDIR)/srv/fs/tmpfs/tmpfs \
88
	$(USPACEDIR)/srv/fs/fat/fat \
99
	$(USPACEDIR)/srv/fs/fat/fat
-
 
100
 
-
 
101
RD_APPS = \
89
	$(USPACEDIR)/app/sctrace/sctrace \
102
	$(USPACEDIR)/app/sctrace/sctrace \
90
	$(USPACEDIR)/app/tetris/tetris \
103
	$(USPACEDIR)/app/tetris/tetris \
91
	$(USPACEDIR)/app/tester/tester \
104
	$(USPACEDIR)/app/tester/tester \
92
	$(USPACEDIR)/app/klog/klog
105
	$(USPACEDIR)/app/klog/klog \
-
 
106
	$(USPACEDIR)/app/bdsh/bdsh
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
 
97
.PHONY: all clean depend
111
.PHONY: all clean depend
Line 105... Line 119...
105
 
119
 
106
depend:
120
depend:
107
	-makedepend $(DEFS) $(CFLAGS) -f - $(SOURCES) > Makefile.depend 2> /dev/null
121
	-makedepend $(DEFS) $(CFLAGS) -f - $(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
110
	-for task in $(RD_TASKS) ; do \
127
	-for file in $(RD_APPS) ; do \
111
		rm -f $(USPACEDIR)/dist/sbin/`basename $$task` ; \
128
		rm -f $(USPACEDIR)/dist/app/`basename $$file` ; \
112
	done
129
	done
113
	-rm -f _components.h _components.c _link.ld $(COMPONENT_OBJECTS) initrd.o $(OBJECTS) initrd.img image.boot Makefile.depend
130
	-rm -f _components.h _components.c _link.ld $(COMPONENT_OBJECTS) initrd.o $(OBJECTS) initrd.img image.boot Makefile.depend
114
 
131
 
115
_components.h _components.c _link.ld $(COMPONENT_OBJECTS) initrd.o: $(COMPONENTS) $(RD_TASKS) _link.ld.in
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
116
	for task in $(RD_TASKS) ; do \
136
	for file in $(RD_APPS) ; do \
117
		cp $$task $(USPACEDIR)/dist/sbin/ ; \
137
		cp $$file $(USPACEDIR)/dist/app/ ; \
118
	done
138
	done
-
 
139
ifeq ($(RDFMT),tmpfs)
119
	../../../../tools/mktmpfs.py 4096 $(USPACEDIR)/dist/ initrd.img
140
	../../../../tools/mktmpfs.py $(USPACEDIR)/dist/ initrd.fs
-
 
141
endif
-
 
142
ifeq ($(RDFMT),fat)
-
 
143
	../../../../tools/mkfat.sh $(USPACEDIR)/dist/ initrd.fs
-
 
144
endif
-
 
145
	../../../../tools/mkhord.py 4096 initrd.fs initrd.img
-
 
146
	rm initrd.fs
120
	../../../tools/pack.py $(OBJCOPY) $(BFD_NAME) $(BFD_ARCH) 4096 "unsigned int" $(COMPONENTS) ./initrd.img
147
	../../../tools/pack.py $(OBJCOPY) $(BFD_NAME) $(BFD_ARCH) 4096 "unsigned int" $(COMPONENTS) ./initrd.img
121
 
148
 
122
%.o: %.S
149
%.o: %.S
123
	$(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@
150
	$(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@
124
 
151