2004/01/14 09:46:40
[org.ibex.core.git] / Makefile.upstream
1 #############################################################################
2 #
3 # The XWT 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_newlib-1.11.0      := ftp://sources.redhat.com/pub/newlib/newlib-1.11.0.tar.gz
11 url_binutils-2.14  := ftp://ftp.gnu.org/gnu/binutils/binutils-2.14.tar.gz 
12 url_w32api-2.3         := http://umn.dl.sourceforge.net/sourceforge/mingw/w32api-2.3.tar.gz
13 url_mingw-runtime-3.0  := http://umn.dl.sourceforge.net/sourceforge/mingw/mingw-runtime-3.0.tar.gz
14 url_freetype-2.1.4     := http://umn.dl.sourceforge.net/sourceforge/freetype/freetype-2.1.4.tar.gz
15 url_gcc-3.3.2            := http://mirrors.rcn.net/pub/sourceware/gcc/releases/gcc-3.3.2/gcc-3.3.2.tar.gz 
16 url_jpeg-6b            := http://www.ijg.org/files/jpegsrc.v6b.tar.gz
17 url_jikes-1.18         := http://dist.xwt.org/jikes-1.18.tgz
18 url_libmspack-20030726 := http://www.kyz.uklinux.net/downloads/libmspack-20030726.tar.gz
19 url_vera-1.10          := http://ftp.gnome.org/pub/GNOME/sources/ttf-bitstream-vera/1.10/ttf-bitstream-vera-1.10.tar.gz
20
21 .install_binutils-2.14_powerpc-apple-darwin: .vendor
22         rm -rf upstream/darwin-linker/src
23         cd upstream/darwin-linker; tar xvzf ../install/powerpc-apple-darwin/cctools-478.tgz
24 ifneq ($(shell uname),Darwin)
25         cd upstream/darwin-linker/src/cctools; for A in ../../patches/*.patch; do patch -p0 < $$A; done
26         cp upstream/darwin-linker/src/cctools/ld/fake-mach.c upstream/darwin-linker/src/cctools/libstuff
27         cd upstream/darwin-linker/src/; mkdir macosx-include; cd macosx-include; chmod +x ../../links.sh; ../../links.sh
28 endif
29         make -C upstream/darwin-linker/src/cctools/libstuff
30         make -C upstream/darwin-linker/src/cctools/misc
31         touch upstream/darwin-linker/src/cctools/misc/makeUser.c upstream/darwin-linker/src/cctools/misc/make.h
32         make -C upstream/darwin-linker/src/cctools/misc libtool.NEW
33         make -C upstream/darwin-linker/src/cctools/ld; true
34         make -C upstream/darwin-linker/src/cctools/as
35         make -C upstream/darwin-linker/src/cctools/ar
36         mkdir -p upstream/install/powerpc-apple-darwin/bin
37         cp upstream/darwin-linker/src/cctools/ld/ld_dir/ld.NEW upstream/install/powerpc-apple-darwin/bin/ld.NEW
38         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
39         chmod +x upstream/install/powerpc-apple-darwin/bin/ld
40         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
41         chmod +x upstream/install/powerpc-apple-darwin/bin/ranlib
42         cp upstream/darwin-linker/src/cctools/misc/libtool.NEW upstream/install/powerpc-apple-darwin/bin/apple-libtool
43         cp upstream/darwin-linker/src/cctools/misc/strip.NEW upstream/install/powerpc-apple-darwin/bin/strip
44         cp upstream/darwin-linker/src/cctools/as/appc_dir/as upstream/install/powerpc-apple-darwin/bin/as
45         cp upstream/darwin-linker/src/cctools/ar/ar.NEW upstream/install/powerpc-apple-darwin/bin/ar.NEW
46         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
47         chmod +x upstream/install/powerpc-apple-darwin/bin/ar
48         mkdir -p upstream/install/bin
49         cd upstream/install/bin; ln -sf ../powerpc-apple-darwin/bin/ld powerpc-apple-darwin-ld
50         cd upstream/install/bin; ln -sf ../powerpc-apple-darwin/bin/as powerpc-apple-darwin-as
51         cd upstream/install/bin; ln -sf ../powerpc-apple-darwin/bin/ar powerpc-apple-darwin-ar
52         cd upstream/install/bin; ln -sf ../powerpc-apple-darwin/bin/ranlib powerpc-apple-darwin-ranlib
53         cd upstream/install/bin; ln -sf ../powerpc-apple-darwin/bin/strip powerpc-apple-darwin-strip
54         echo -e "#!/bin/sh\nc++filt \$$@\n" > upstream/install/bin/c++filt3; chmod +x upstream/install/bin/c++filt3
55         cd upstream/install/powerpc-apple-darwin/bin; ln -sf ../../bin/c++filt3
56         touch $@
57
58 # building gcc requires binutils
59 .configure_gcc-3.3.2_$(target): .install_binutils-2.14_$(target)      
60
61 # building newlib requires gcc
62 .configure_newlib-1.11.0_$(target): .install_gcc-3.3.2_$(target)
63
64 # how to configure it
65 configure_gcc-3.3.2                       += --enable-languages=c,c++,java --enable-gc-type=boehm --disable-jvmpi
66 ifneq ($(platform),Solaris)
67 configure_gcc-3.3.2                       += --disable-shared
68 else
69 configure_gcc-3.3.2                       += --enable-shared 
70 endif
71 configure_gcc-3.3.2                       += --disable-java-awt --disable-interpreter --enable-static --enable-libgcj
72 ifneq ($(shell uname),$(platform))
73 ifneq ($(target),mips-unknown-elf)
74 configure_gcc-3.3.2                       += --with-ld=$(shell pwd)/upstream/install/bin/$(target)-ld --with-gnu-ld
75 configure_gcc-3.3.2                       += --with-as=$(shell pwd)/upstream/install/bin/$(target)-as --with-gnu-as
76 configure_gcc-3.3.2                       += --with-headers=$(shell pwd)/upstream/install/$(target)/include
77 configure_gcc-3.3.2                       += --with-libs=$(shell pwd)/upstream/install/$(target)/lib
78 endif
79 endif
80 configure_gcc-3.3.2_powerpc-apple-darwin  += --enable-threads=posix --disable-hash-synchronization --disable-multilib
81 configure_gcc-3.3.2_i686-pc-mingw32       += --enable-threads=win32 --enable-hash-synchronization
82 configure_gcc-3.3.2_i686-pc-linux-gnu     += --enable-threads=posix --enable-hash-synchronization
83 configure_gcc-3.3.2_sparc-sun-solaris2.7  += --enable-threads=posix --disable-multilib
84 configure_gcc-3.3.2_mips-unknown-elf      += --with-gnu-ld=$(shell pwd)/upstream/install/bin/$(target)-ld
85 configure_gcc-3.3.2_mips-unknown-elf      += --with-as=$(shell pwd)/upstream/install/bin/$(target)-as
86 configure_gcc-3.3.2_mips-unknown-elf      += --enable-languages=c --nfp --enable-multilib --disable-threads
87
88 environment_newlib-1.11.0_mips-unknown-elf += TARGET_CFLAGS="-O3 -ffunction-sections -fdata-sections"
89
90 # libjpeg's configury doesn't obey --target
91 environment_jpeg-6b_$(target)           += PATH=$(shell pwd)/upstream/install/$(target)/bin:$$PATH
92 environment_jpeg-6b_$(target)           += CC=$(shell pwd)/upstream/install/bin/$(target)-gcc
93 environment_jpeg-6b_$(target)           += AR="$(shell pwd)/upstream/install/$(target)/bin/ar rc"
94 environment_jpeg-6b_$(target)           += AR2=$(shell pwd)/upstream/install/$(target)/bin/ranlib
95
96 # libmspack configury doesn't obey --target
97 environment_libmspack-20030726_$(target) += PATH=$(shell pwd)/upstream/install/$(target)/bin:$$PATH
98 environment_libmspack-20030726_$(target) += CC=$(shell pwd)/upstream/install/bin/$(target)-gcc
99 environment_libmspack-20030726_$(target) += AR="$(shell pwd)/upstream/install/$(target)/bin/ar"
100 environment_libmspack-20030726_$(target) += AR2=$(shell pwd)/upstream/install/$(target)/bin/ranlib
101 environment_libmspack-20030726_$(target) += OPTIM="-ffunction-sections -fdata-sections -O3"
102
103
104 environment_gcc_3.3_$(target)           += PATH=$(shell pwd)/upstream/install/bin:$$PATH
105
106 .PRECIOUS: .vendor .download_% .configure_%_$(target) .install_%_$(target)
107
108 # vendor-supplied binaries and headers; this is stuff that comes with various OSes
109 vendor: .vendor; @true
110 .vendor:
111         @echo -e "\n\033[1mdownloading vendor-supplied headers and libraries...\033[0m"
112         mkdir -p upstream/install
113         curl http://www.megacz.com/vendor.tgz | tar xzf - -C upstream/install
114         mkdir -p upstream/install/i686-pc-mingw32
115         curl $(url_w32api-2.3) | tar xzf - -C upstream/install/i686-pc-mingw32
116         curl $(url_mingw-runtime-3.0) | tar xzf - -C upstream/install/i686-pc-mingw32
117 ifeq ($(shell uname),Linux)
118         rm -rf upstream/install/i686-pc-linux-gnu/include
119         ln -sf /usr/include upstream/install/i686-pc-linux-gnu/include
120 endif
121         touch .vendor
122
123 .download_%:
124         @echo -e "\n\033[1mdownloading $*...\033[0m"
125         mkdir -p upstream/$*
126         curl $(url_$*) | tar xzf - -C upstream/$*
127         mv upstream/$*/$* upstream/$*/src; true
128         mv upstream/$*/libmspack upstream/$*/src; true
129         (test -e upstream/$*/patches && cd upstream/$*/src && for A in ../patches/*.patch; do patch -p0 -l < $$A; done); true
130         touch $@
131
132 .configure_%_$(target): .download_% 
133         @echo -e "\n\033[1mconfiguring $*...\033[0m"
134         mkdir -p upstream/$*/build-$(target)
135         cd upstream/$*/build-$(target); \
136                 $(setcc) $(environment_$*_$(target)) ../src/configure \
137                 --target=$(target) \
138                 --prefix=`cd ../..; pwd`/install \
139                 $(configure_$*) \
140                 $(configure_$*_$(target))
141         touch $@
142
143 .configure_libmspack-20030726_$(target): .download_libmspack-20030726 .install_gcc-3.3.2_$(target) .install_newlib-1.11.0_$(target)
144         mkdir -p upstream/libmspack-20030726/build-$(target)
145         cd upstream/libmspack-20030726/build-$(target); ln -sf ../src/mspack/* .
146         touch $@
147
148 .install_freetype-2.1.4_mips-unknown-elf: .install_gcc-3.3.2_mips-unknown-elf .install_newlib-1.11.0_mips-unknown-elf .download_freetype-2.1.4
149         cd upstream/freetype-2.1.4/src; \
150            make setup ansi; \
151            PATH=$$PATH:`pwd`/../../install/bin make \
152               CC=mips-unknown-elf-gcc \
153               AR=mips-unknown-elf-ar \
154               CFLAGS="-c -ffunction-sections -fdata-sections -O3"
155         upstream/install/bin/mips-unknown-elf-ranlib upstream/freetype-2.1.4/src/objs/libfreetype.a
156         touch $@
157
158 .build_%_$(target): .configure_%_$(target)
159         @echo -e "\n\033[1mbuilding $*...\033[0m"
160         cd upstream/$*/build-$(target); \
161                 $(setcc) PATH=$$PATH:`pwd`/../../install/bin \
162                 $(environment_$*_$(target)) \
163                 make $(setcc) $(environment_$*_$(target))
164         touch $@
165
166 .install_libmspack-20030726_$(target): .build_libmspack-20030726_$(target); true
167
168 .install_%_$(target): .build_%_$(target)
169         @echo -e "\n\033[1minstalling $*...\033[0m"
170         cd upstream/$*/build-$(target); \
171                 $(setcc) PATH=$$PATH:`pwd`/../../install/bin \
172                 $(environment_$*_$(target)) \
173                 make install $(setcc) $(environment_$*_$(target))
174         touch $@
175
176 # jikes has a special target to autodetect a pre-installed jikes, and to autodetect the JVM's $CLASSPATH
177 .jikes:
178         @echo -e "\n\033[1mdetecting your jikes installation...\033[0m"
179         echo "#!/bin/sh" > .jikes
180         #echo 'for A in `find build/class -name \*.class`; do mv $$A $$A.old; done;' >> .jikes
181         echo -n 'PATH=upstream/install/bin:$$PATH jikes -classpath lib/libgcj-minimal.jar:build/class $$@ -d build/class/ -sourcepath build/java/ ' >> .jikes
182         (type jikes && (jikes --version | grep "Version 1.18")) || make .install_jikes-1.18_ target=
183         echo -n "$(jikes_flags) -bootclasspath " >> .jikes
184         echo "public class GetBootClassPath { public static void main(String[] s) { " > GetBootClassPath.java
185         echo "System.out.println(System.getProperty(\"sun.boot.class.path\")); } }"  >> GetBootClassPath.java
186         javac GetBootClassPath.java
187         java -cp . GetBootClassPath >> .jikes
188         rm GetBootClassPath.*
189         echo 'EXIT=$$?' >> .jikes
190         #echo 'for A in `find build/class -name \*.class`; do test -e $$A.old && cmp -s $$A $$A.old && mv $$A.old $$A; done' >> .jikes
191         #echo 'for A in `find build/class -name \*.class`; do test -e $$A.old && rm $$A.old; done' >> .jikes
192         echo 'exit $$EXIT' >> .jikes
193         mv .jikes .jikes+
194         cp .jikes+ .jikes
195         chmod +x .jikes