typo in Interpreter
[org.ibex.core.git] / Makefile.upstream
1 ############################################################################# 
2 #
3 # The Ibex upstream code Makefile
4 #
5
6 # deal with Apple's brokenness
7 setcc := $(shell test `uname` = Darwin && echo "CC=\"/usr/bin/gcc3 -no-cpp-precomp\"")
8
9 # where to get stuff
10 url_binutils-2.13.2.1  := ftp://ftp.gnu.org/gnu/binutils/binutils-2.13.2.1.tar.gz 
11 url_w32api-2.3         := http://unc.dl.sourceforge.net/sourceforge/mingw/w32api-2.3.tar.gz
12 url_mingw-runtime-3.0  := http://unc.dl.sourceforge.net/sourceforge/mingw/mingw-runtime-3.0.tar.gz
13 url_freetype-2.1.4     := http://unc.dl.sourceforge.net/sourceforge/freetype/freetype-2.1.4.tar.gz
14 url_gcc-3.3            := http://mirrors.rcn.net/pub/sourceware/gcc/releases/gcc-3.3/gcc-3.3.tar.gz 
15 url_jpeg-6b            := http://www.ijg.org/files/jpegsrc.v6b.tar.gz
16 url_libmspack-20030726 := http://www.kyz.uklinux.net/downloads/libmspack-20030726.tar.gz
17 url_vera-1.10          := http://fgo-temp.acc.umu.se/pub/GNOME/sources/ttf-bitstream-vera/1.10/ttf-bitstream-vera-1.10.tar.gz
18 url_WindowMaker-0.80.2 := http://windowmaker.org/pub/source/release/WindowMaker-0.80.2.tar.gz
19 url_bcel-5.1           := http://www.apache.org/dist/jakarta/bcel/binaries/bcel-5.1.tar.gz
20 url_gnu.regexp-1.1.4   := ftp://ftp.tralfamadore.com/pub/java/gnu.regexp-1.1.4.tar.gz
21
22 .install_binutils-2.13.2.1_powerpc-apple-darwin: .vendor
23         rm -rf upstream/darwin-linker/src
24         cd upstream/darwin-linker; tar xvzf ../install/powerpc-apple-darwin/cctools-478.tgz
25 ifneq ($(shell uname),Darwin)
26         cd upstream/darwin-linker/src/cctools; for A in ../../patches/*.patch; do patch -p0 < $$A; done
27         cp upstream/darwin-linker/src/cctools/ld/fake-mach.c upstream/darwin-linker/src/cctools/libstuff
28         cd upstream/darwin-linker/src/; mkdir macosx-include; cd macosx-include; chmod +x ../../links.sh; ../../links.sh
29 endif
30         make -C upstream/darwin-linker/src/cctools/libstuff
31         make -C upstream/darwin-linker/src/cctools/misc
32         touch upstream/darwin-linker/src/cctools/misc/makeUser.c upstream/darwin-linker/src/cctools/misc/make.h
33         make -C upstream/darwin-linker/src/cctools/misc libtool.NEW
34         make -C upstream/darwin-linker/src/cctools/ld; true
35         make -C upstream/darwin-linker/src/cctools/as
36         make -C upstream/darwin-linker/src/cctools/ar
37         mkdir -p upstream/install/powerpc-apple-darwin/bin
38         cp upstream/darwin-linker/src/cctools/ld/ld_dir/ld.NEW upstream/install/powerpc-apple-darwin/bin/ld.NEW
39         echo -e "#!/bin/sh\n"`pwd`"/upstream/install/powerpc-apple-darwin/bin/ld.NEW -dylib_file /usr/lib/system/libmathCommon.A.dylib:"`pwd`"/upstream/install/powerpc-apple-darwin/lib/libmathCommon.A.dylib -L"`pwd`"/upstream/install/powerpc-apple-darwin/lib \$$@\n" > upstream/install/powerpc-apple-darwin/bin/ld
40         chmod +x upstream/install/powerpc-apple-darwin/bin/ld
41         echo -e "#!/bin/sh\n"`pwd`"/upstream/install/powerpc-apple-darwin/bin/apple-libtool \$$1 -o \$$1\n" > upstream/install/powerpc-apple-darwin/bin/ranlib
42         chmod +x upstream/install/powerpc-apple-darwin/bin/ranlib
43         cp upstream/darwin-linker/src/cctools/misc/libtool.NEW upstream/install/powerpc-apple-darwin/bin/apple-libtool
44         cp upstream/darwin-linker/src/cctools/misc/strip.NEW upstream/install/powerpc-apple-darwin/bin/strip
45         cp upstream/darwin-linker/src/cctools/as/appc_dir/as upstream/install/powerpc-apple-darwin/bin/as
46         cp upstream/darwin-linker/src/cctools/ar/ar.NEW upstream/install/powerpc-apple-darwin/bin/ar.NEW
47         echo -e "#!/bin/sh\n"`pwd`"/upstream/install/powerpc-apple-darwin/bin/ar.NEW \$$@\n"`pwd`"/upstream/install/powerpc-apple-darwin/bin/ranlib \$$2\n" > upstream/install/powerpc-apple-darwin/bin/ar
48         chmod +x upstream/install/powerpc-apple-darwin/bin/ar
49         mkdir -p upstream/install/bin
50         cd upstream/install/bin; ln -sf ../powerpc-apple-darwin/bin/ld powerpc-apple-darwin-ld
51         cd upstream/install/bin; ln -sf ../powerpc-apple-darwin/bin/as powerpc-apple-darwin-as
52         cd upstream/install/bin; ln -sf ../powerpc-apple-darwin/bin/ar powerpc-apple-darwin-ar
53         cd upstream/install/bin; ln -sf ../powerpc-apple-darwin/bin/ranlib powerpc-apple-darwin-ranlib
54         cd upstream/install/bin; ln -sf ../powerpc-apple-darwin/bin/strip powerpc-apple-darwin-strip
55         echo -e "#!/bin/sh\nc++filt \$$@\n" > upstream/install/bin/c++filt3; chmod +x upstream/install/bin/c++filt3
56         cd upstream/install/powerpc-apple-darwin/bin; ln -sf ../../bin/c++filt3
57         touch $@
58
59
60 # how to configure it
61 ifneq ($(shell uname),$(platform))
62 configure_gcc-3.3                       += --with-headers=$(shell pwd)/upstream/install/$(target)/include
63 endif
64 configure_gcc-3.3                       += --enable-languages=c,c++,java --enable-gc-type=boehm --disable-jvmpi --without-libffi
65 configure_gcc-3.3                       += --with-ld=$(shell pwd)/upstream/install/bin/$(target)-ld
66 configure_gcc-3.3                       += --with-as=$(shell pwd)/upstream/install/bin/$(target)-as
67 ifneq ($(platform),Darwin)
68 configure_gcc-3.3                       += --with-gnu-ld --with-gnu-as
69 endif
70 configure_gcc-3.3                       += --disable-java-awt --disable-interpreter --enable-libgcj
71 configure_gcc-3.3                       += --disable-shared --enable-static --disable-jni
72 configure_binutils-2.13.2.1             += --disable-shared --enable-static
73 configure_gcc-3.3_powerpc-apple-darwin  += --enable-threads=posix --disable-hash-synchronization --disable-multilib
74 configure_gcc-3.3_i686-pc-mingw32       += --enable-threads=win32 --enable-hash-synchronization
75 configure_gcc-3.3_i686-pc-linux-gnu     += --enable-threads=posix --enable-hash-synchronization
76 configure_gcc-3.3_sparc-sun-solaris2.7  += --enable-threads=posix --disable-hash-synchronization --disable-multilib
77
78 configure_WindowMaker-0.80.2_$(target)  += --prefix=$(shell pwd)/upstream/install/$(target)
79 configure_WindowMaker-0.80.2_$(target)  += --host=i686-pc-linux-gnu --x-libraries=$(shell pwd)/upstream/install/$(target)/lib
80
81 #environment_gcc-3.3_i686-pc-linux-gnu   += CFLAGS="-Wl,-ldl"
82
83 # libjpeg's configury doesn't obey --target
84 environment_jpeg-6b_$(target)           += PATH=$(shell pwd)/upstream/install/$(target)/bin:$$PATH
85 environment_jpeg-6b_$(target)           += CC=$(shell pwd)/upstream/install/bin/$(target)-gcc
86 environment_jpeg-6b_$(target)           += CFLAGS="-Os -ffunction-sections -fdata-sections -I ."
87 environment_jpeg-6b_$(target)           += AR="$(shell pwd)/upstream/install/$(target)/bin/ar rc"
88 environment_jpeg-6b_$(target)           += AR2=$(shell pwd)/upstream/install/$(target)/bin/ranlib
89
90 # libmspack configury doesn't obey --target
91 environment_libmspack-20030726_$(target) += PATH=$(shell pwd)/upstream/install/$(target)/bin:$$PATH
92 environment_libmspack-20030726_$(target) += CC=$(shell pwd)/upstream/install/bin/$(target)-gcc
93 environment_libmspack-20030726_$(target) += AR="$(shell pwd)/upstream/install/$(target)/bin/ar"
94 environment_libmspack-20030726_$(target) += AR2=$(shell pwd)/upstream/install/$(target)/bin/ranlib
95 environment_libmspack-20030726_$(target) += OPTIM="-ffunction-sections -fdata-sections -O3"
96
97 # WindowMaker configury doesn't obey --target
98 environment_WindowMaker-0.80.2_$(target) += PATH=$(shell pwd)/upstream/install/$(target)/bin:$$PATH
99 environment_WindowMaker-0.80.2_$(target) += CC=$(shell pwd)/upstream/install/bin/$(target)-gcc
100 environment_WindowMaker-0.80.2_$(target) += AR="$(shell pwd)/upstream/install/$(target)/bin/ar"
101 environment_WindowMaker-0.80.2_$(target) += AR2=$(shell pwd)/upstream/install/$(target)/bin/ranlib
102 environment_WindowMaker-0.80.2_$(target) += LDFLAGS="-lXext -ldl"
103 make_install_WindowMaker-0.80.2_$(target) := -C WINGs install; make -C wrlib
104 make_WindowMaker-0.80.2_$(target) := WINGs
105
106 environment_gcc_3.3_$(target)           += PATH=$(shell pwd)/upstream/install/bin:$$PATH
107
108 .PRECIOUS: .vendor .download_% .configure_%_$(target) .install_%_$(target)
109
110 .download_org.ibex.%:
111         @echo -e "\033[1mfetching repository                 org.ibex.$*\033[0m"
112         @mkdir -p upstream; cd upstream; rm -rf org.ibex.$*; rm -rf org.ibex.$*_*
113         @cd upstream; darcs get --verbose --partial --repo-name=org.ibex.$* http://$*.ibex.org
114         @touch $@
115
116 .build_org.ibex.nestedvm: .vendor .download_org.ibex.nestedvm
117         cd upstream/org.ibex.nestedvm; make usr=$(shell pwd)/upstream/install all env.sh
118         touch $@
119
120 .install_org.ibex.nestedvm: .build_org.ibex.nestedvm
121         touch $@
122
123 # vendor-supplied binaries and headers; this is stuff that comes with various OSes
124 vendor: .vendor; @true
125 .vendor:
126         @echo -e "\n\033[1mdownloading vendor-supplied headers and libraries...\033[0m"
127         mkdir -p upstream/install
128         curl http://www.megacz.com/vendor.tgz | tar xzf - -C upstream/install
129         mkdir -p upstream/install/i686-pc-mingw32
130         curl $(url_w32api-2.3) | tar xzf - -C upstream/install/i686-pc-mingw32
131         curl $(url_mingw-runtime-3.0) | tar xzf - -C upstream/install/i686-pc-mingw32
132 ifeq ($(shell uname),Linux)
133         cd upstream/install/i686-pc-linux-gnu/include; rm -rf *; ln -sf /usr/include/* .
134 endif
135         touch .vendor
136
137 .download_gcc-3.3_powerpc-apple-darwin:
138         @echo -e "\n\033[1mdownloading $*...\033[0m"
139         mkdir -p upstream/gcc-3.3
140         curl $(url_gcc-3.3) | tar xzf - -C upstream/gcc-3.3
141         mv upstream/gcc-3.3/gcc-3.3 upstream/gcc-3.3/src-darwin; true
142         mv upstream/gcc-3.3/libmspack upstream/gcc-3.3/src-darwin; true
143         (cd upstream/gcc-3.3/src-darwin && for A in ../patches/[a-y]*.patch; do patch -p0 -l < $$A; done); true
144         (cd upstream/gcc-3.3/src-darwin && for A in ../patches-darwin/*.patch; do patch -p0 -l < $$A; done); true
145         touch $@
146
147 .download_%:
148         @echo -e "\n\033[1mdownloading $*...\033[0m"
149         mkdir -p upstream/$*
150         curl $(url_$*) | tar xzf - -C upstream/$*
151         mv upstream/$*/$* upstream/$*/src; true
152         mv upstream/$*/libmspack upstream/$*/src; true
153         (test -e upstream/$*/patches && cd upstream/$*/src && for A in ../patches/*.patch; do patch -p0 -l < $$A; done); true
154         touch $@
155
156 .configure_gcc-3.3_powerpc-apple-darwin: .download_gcc-3.3_powerpc-apple-darwin .install_binutils-2.13.2.1_powerpc-apple-darwin
157         @echo -e "\n\033[1mconfiguring gcc...\033[0m"
158         mkdir -p upstream/gcc-3.3/build-$(target)
159         cd upstream/gcc-3.3/build-$(target); \
160                 $(setcc) $(environment_gcc-3.3_$(target)) ../src-darwin/configure \
161                 --target=$(target) \
162                 --prefix=`cd ../..; pwd`/install \
163                 $(configure_gcc-3.3) \
164                 $(configure_gcc-3.3_$(target))
165         touch $@
166
167 .configure_gcc-3.3_$(target): .install_binutils-2.13.2.1_$(target)
168
169 .configure_%_$(target): .vendor .download_%
170         @echo -e "\n\033[1mconfiguring $*...\033[0m"
171         mkdir -p upstream/$*/build-$(target)
172         cd upstream/$*/build-$(target); \
173                 $(setcc) $(environment_$*_$(target)) ../src/configure \
174                 --target=$(target) \
175                 --prefix=`cd ../..; pwd`/install \
176                 $(configure_$*) \
177                 $(configure_$*_$(target))
178         touch $@
179
180 .configure_libmspack-20030726_$(target): .download_libmspack-20030726 .install_gcc-3.3_$(target)
181         mkdir -p upstream/libmspack-20030726/build-$(target)
182         cd upstream/libmspack-20030726/build-$(target); ln -sf ../src/mspack/* .
183         touch $@
184
185 .install_freetype-2.1.4_mips-unknown-elf: .install_org.ibex.nestedvm .download_freetype-2.1.4
186         cd upstream/freetype-2.1.4/src; \
187            make setup ansi; \
188            PATH=$$PATH:`pwd`/../../install/bin make \
189               CC=mips-unknown-elf-gcc \
190               AR=mips-unknown-elf-ar \
191               CFLAGS="-c -ffunction-sections -fdata-sections -O3"
192         upstream/install/bin/mips-unknown-elf-ranlib upstream/freetype-2.1.4/src/objs/libfreetype.a
193         touch $@
194
195 .build_%_$(target): .configure_%_$(target)
196         @echo -e "\n\033[1mbuilding $*...\033[0m"
197         cd upstream/$*/build-$(target); \
198                 $(setcc) PATH=$$PATH:`pwd`/../../install/bin \
199                 $(environment_$*_$(target)) \
200                 make $(make_$*_$(target)) $(setcc) $(environment_$*_$(target))
201         touch $@
202
203 .install_libmspack-20030726_$(target): .build_libmspack-20030726_$(target); true
204
205 .install_gcc-3.3_mips-unknown-elf: .install_org.ibex.nestedvm
206         touch $@
207
208 .install_%_$(target): .build_%_$(target)
209         @echo -e "\n\033[1minstalling $*...\033[0m"
210         cd upstream/$*/build-$(target); \
211                 $(setcc) PATH=$$PATH:`pwd`/../../install/bin \
212                 $(environment_$*_$(target)) \
213                 make $(make_install_$*_$(target)) install $(setcc) $(environment_$*_$(target))
214         touch $@
215
216
217