uniform naming of upstream org.ibex packages
[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.nestedvm:
111         mkdir -p upstream/org.ibex.nestedvm
112         cd upstream/org.ibex.nestedvm; wget -l 999 -nH -r http://nestedvm.ibex.org/
113         find upstream/org.ibex.nestedvm -name index.html -exec rm -f {} \;
114         touch $@
115
116 .build_nestedvm: .vendor .download_nestedvm
117         cd upstream/nestedvm; make usr=$(shell pwd)/upstream/install
118         touch $@
119
120 .install_org.ibex.nestedvm: .build_org.ibex.nestedvm
121         touch $@
122
123 .download_org.ibex.crypto:
124         mkdir -p upstream/org.ibex.crypto
125         cd upstream/org.ibex.crypto; wget -l 999 -nH -r http://crypto.ibex.org/
126         find upstream/org.ibex.crypto -name index.html -exec rm -f {} \;
127         touch $@
128
129 # vendor-supplied binaries and headers; this is stuff that comes with various OSes
130 vendor: .vendor; @true
131 .vendor:
132         @echo -e "\n\033[1mdownloading vendor-supplied headers and libraries...\033[0m"
133         mkdir -p upstream/install
134         curl http://www.megacz.com/vendor.tgz | tar xzf - -C upstream/install
135         mkdir -p upstream/install/i686-pc-mingw32
136         curl $(url_w32api-2.3) | tar xzf - -C upstream/install/i686-pc-mingw32
137         curl $(url_mingw-runtime-3.0) | tar xzf - -C upstream/install/i686-pc-mingw32
138 ifeq ($(shell uname),Linux)
139         cd upstream/install/i686-pc-linux-gnu/include; rm -rf *; ln -sf /usr/include/* .
140 endif
141         touch .vendor
142
143 .download_gcc-3.3_powerpc-apple-darwin:
144         @echo -e "\n\033[1mdownloading $*...\033[0m"
145         mkdir -p upstream/gcc-3.3
146         curl $(url_gcc-3.3) | tar xzf - -C upstream/gcc-3.3
147         mv upstream/gcc-3.3/gcc-3.3 upstream/gcc-3.3/src-darwin; true
148         mv upstream/gcc-3.3/libmspack upstream/gcc-3.3/src-darwin; true
149         (cd upstream/gcc-3.3/src-darwin && for A in ../patches/*.patch; do patch -p0 -l < $$A; done); true
150         (cd upstream/gcc-3.3/src-darwin && for A in ../patches-darwin/*.patch; do patch -p0 -l < $$A; done); true
151         touch $@
152
153 .download_%:
154         @echo -e "\n\033[1mdownloading $*...\033[0m"
155         mkdir -p upstream/$*
156         curl $(url_$*) | tar xzf - -C upstream/$*
157         mv upstream/$*/$* upstream/$*/src; true
158         mv upstream/$*/libmspack upstream/$*/src; true
159         (test -e upstream/$*/patches && cd upstream/$*/src && for A in ../patches/*.patch; do patch -p0 -l < $$A; done); true
160         touch $@
161
162 .configure_gcc-3.3_powerpc-apple-darwin: .download_gcc-3.3_powerpc-apple-darwin .install_binutils-2.13.2.1_powerpc-apple-darwin
163         @echo -e "\n\033[1mconfiguring gcc...\033[0m"
164         mkdir -p upstream/gcc-3.3/build-$(target)
165         cd upstream/gcc-3.3/build-$(target); \
166                 $(setcc) $(environment_gcc-3.3_$(target)) ../src-darwin/configure \
167                 --target=$(target) \
168                 --prefix=`cd ../..; pwd`/install \
169                 $(configure_gcc-3.3) \
170                 $(configure_gcc-3.3_$(target))
171         touch $@
172
173 .configure_gcc-3.3_$(target): .install_binutils-2.13.2.1_$(target)
174
175 .configure_%_$(target): .vendor .download_%
176         @echo -e "\n\033[1mconfiguring $*...\033[0m"
177         mkdir -p upstream/$*/build-$(target)
178         cd upstream/$*/build-$(target); \
179                 $(setcc) $(environment_$*_$(target)) ../src/configure \
180                 --target=$(target) \
181                 --prefix=`cd ../..; pwd`/install \
182                 $(configure_$*) \
183                 $(configure_$*_$(target))
184         touch $@
185
186 .configure_libmspack-20030726_$(target): .download_libmspack-20030726 .install_gcc-3.3_$(target)
187         mkdir -p upstream/libmspack-20030726/build-$(target)
188         cd upstream/libmspack-20030726/build-$(target); ln -sf ../src/mspack/* .
189         touch $@
190
191 .install_freetype-2.1.4_mips-unknown-elf: .install_nestedvm .download_freetype-2.1.4
192         cd upstream/freetype-2.1.4/src; \
193            make setup ansi; \
194            PATH=$$PATH:`pwd`/../../install/bin make \
195               CC=mips-unknown-elf-gcc \
196               AR=mips-unknown-elf-ar \
197               CFLAGS="-c -ffunction-sections -fdata-sections -O3"
198         upstream/install/bin/mips-unknown-elf-ranlib upstream/freetype-2.1.4/src/objs/libfreetype.a
199         touch $@
200
201 .build_%_$(target): .configure_%_$(target)
202         @echo -e "\n\033[1mbuilding $*...\033[0m"
203         cd upstream/$*/build-$(target); \
204                 $(setcc) PATH=$$PATH:`pwd`/../../install/bin \
205                 $(environment_$*_$(target)) \
206                 make $(make_$*_$(target)) $(setcc) $(environment_$*_$(target))
207         touch $@
208
209 .install_libmspack-20030726_$(target): .build_libmspack-20030726_$(target); true
210
211 .install_gcc-3.3_mips-unknown-elf: .install_nestedvm
212         touch $@
213
214 .install_%_$(target): .build_%_$(target)
215         @echo -e "\n\033[1minstalling $*...\033[0m"
216         cd upstream/$*/build-$(target); \
217                 $(setcc) PATH=$$PATH:`pwd`/../../install/bin \
218                 $(environment_$*_$(target)) \
219                 make $(make_install_$*_$(target)) install $(setcc) $(environment_$*_$(target))
220         touch $@
221
222
223