2003/09/08 20:40:48
[org.ibex.core.git] / Makefile
1 #############################################################################
2 #
3 # The XWT Makefile
4 #
5
6 all:      JVM Linux Win32 Darwin Java2 Solaris
7
8 JVM:        build/JVM/xwt.jar
9 Linux:    ; make gcj platform=Linux   target=i686-pc-linux-gnu    link_flags="-lX11 -lXext --static"
10 Solaris:  ; make gcj platform=Solaris target=sparc-sun-solaris2.7 link_flags="-lX11 -lXext"
11 Win32:    ; make gcj platform=Win32   target=i686-pc-mingw32      link_flags="-Wl,--subsystem,windows -lcomdlg32" target_bin=xwt.exe
12 Darwin:   ; make gcj platform=Darwin  target=powerpc-apple-darwin link_flags="-lgcj -lSystem -lgcc -lmathCommon.A upstream/install/powerpc-apple-darwin/lib/crt1.o"
13
14
15 #############################################################################
16 # Configurables:
17 #
18 target_bin             := xwt.$(shell echo $(platform) | tr A-Z a-z)
19 jikes_flags            := -nowarn -sourcepath src/
20 gcc_optimizations      := -O2
21 #gcc_optimizations      := -O9 -ffast-math -fomit-frame-pointer -foptimize-sibling-calls
22 #gcc_optimizations      += -finline-functions -funroll-loops -ffunction-sections -fdata-sections
23 gcc_flags              := -nostdinc $(gcc_optimizations) -Ibuild/h -Iupstream/jpeg-6b/src/ -Iupstream/jpeg-6b/build-$(target)/
24 gcj_flags              := -fCLASSPATH=build/java
25 gcj                    := upstream/install/bin/$(target)-gcj $(gcc_flags) $(gcj_flags)
26 g++                    := upstream/install/bin/$(target)-gcj $(gcc_flags)
27 gcc                    := upstream/install/bin/$(target)-gcc $(gcc_flags)
28 jar                    := $(shell ((type fastjar &>/dev/null) && echo fastjar) || echo jar)
29
30
31
32 include Makefile.upstream
33 jpeg_c_sources    := jdapimin.c jdapistd.c jcomapi.c jcparam.c jdmaster.c jdinput.c jdmainct.c jdcoefct.c jdpostct.c jdmarker.c
34 jpeg_c_sources    += jdhuff.c jdphuff.c jddctmgr.c jidctint.c jidctfst.c jidctflt.c jidctred.c jdsample.c jdcolor.c jdmerge.c
35 jpeg_c_sources    += jquant1.c jquant2.c jerror.c jutils.c jmemnobs.c jmemmgr.c
36 upstream/jpeg-6b/src/%.c: .download_jpeg-6b
37
38 freetype_sources    := ftsystem.c ftmm.c ftbbox.c ftinit.c ftdebug.c ftbase.c ftglyph.c smooth.c sfnt.c truetype.c
39 upstream/freetype-2.1.4/%.c: .download_freetype-2.1.4
40
41 java_sources      := $(patsubst src/%.java,    build/java/%.java, $(shell find src -name \*.java))
42 java_sources      += $(patsubst src/%.java.pp, build/java/%.java, $(shell find src -name \*.java.pp))
43 java_sources      += build/java/org/xwt/Builtin.java
44
45 build/java/%.java: src/%.java ; @echo linking $@; mkdir -p $(@D); ln -s `echo $(@D) | sed 's_[^/]*\(/\|$$\)_../_g'`/$< $@
46 build/cc/%.cc:     src/%.c    ; @echo linking $@; mkdir -p $(@D); ln -s `echo $(@D) | sed 's_[^/]*\(/\|$$\)_../_g'`/$< $@
47 build/c/jpeg/%.c:     upstream/jpeg-6b/src/%.c
48         @echo linking $@; mkdir -p $(@D); ln -s `echo $(@D) | sed 's_[^/]*\(/\|$$\)_../_g'`/$< $@
49 build/c/freetype/%.c: upstream/freetype-2.1.4/src/base/%.c
50         @echo linking $@; mkdir -p $(@D); ln -s `echo $(@D) | sed 's_[^/]*\(/\|$$\)_../_g'`/$< $@
51 build/c/freetype/%.c: upstream/freetype-2.1.4/src/%/%.c
52         @echo linking $@; mkdir -p $(@D); ln -s `echo $(@D) | sed 's_[^/]*\(/\|$$\)_../_g'`/$< $@
53
54 build/java/%.java: src/%.java.pp
55         @make -s build/class/org/xwt/util/Preprocessor.class
56         @echo -e "\n\033[1mpreprocessing   .java.pp -> .java:  $<\033[0m"
57         mkdir -p `dirname $@`
58         rm -f $@
59         java -cp build/class org.xwt.util.Preprocessor < $< > $@
60
61 build/class/%.class: build/java/%.java .jikes
62         @echo -e "\n\033[1mcompiling          .java -> .class: $<\033[0m"
63         mkdir -p build/class
64         @./.jikes $<
65
66 compile: .compile
67 .compile: $(java_sources:build/java/%.c=build/class/%.class)
68         @echo -e "\n\033[1mcompiling          .java -> .class: src/**/*.java\033[0m"
69         mkdir -p build/class
70         @./.jikes $(java_sources)
71         touch .compile
72
73 # PHASE 4: gcj-generated headers
74 java_headers          := $(java_sources:build/java/%.java=build/h/%.h)
75 build/h/%.h: build/class/%.class .compile
76         @echo -e "\n\033[1mextracting        .class -> .h:     $<\033[0m"
77         mkdir -p `dirname $@`
78         ls `echo $< | sed s/.class\$$//`*.class |\
79                  sed s_build/class/__ | sed s/.class\$$//g | sed s_/_._g | (cd build/class; xargs ../../upstream/install/bin/$(target)-gcjh -d ../h --classpath .)
80
81 # a hack since we've disabled gcj's awt implementation
82 build/$(platform)/org/xwt/plat/Java2.java.o:
83         touch .empty.c; mkdir -p $(@D); $(gcc) -c .empty.c -o $@;
84 build/$(platform)/org/xwt/plat/AWT.java.o:
85         touch .empty.c; mkdir -p $(@D); $(gcc) -c .empty.c -o $@;
86
87 build/$(platform)/%.java.o: build/java/%.java
88         @echo -e "\n\033[1mcompiling          .java -> .o:     $<\033[0m"
89         mkdir -p `dirname $@`
90         $(gcj) -c $< -o $@
91
92 build/$(platform)/org/xwt/plat/$(platform).cc.o: src/org/xwt/plat/$(platform).cc src/org/xwt/plat/*.cc $(java_headers) .configure_jpeg-6b_$(target)
93         @echo -e "\n\033[1mcompiling            .cc -> .o:     $<\033[0m"
94         mkdir -p `dirname $@`
95         $(g++) -Iupstream/install/lib/gcc-lib/$(target)/3.3/include/ -Iupstream/install/$(target)/include -I/usr/X11R6/include/  -Ibuild/h -Wno-multichar -Iupstream/install/include -c $< -o $@
96
97 build/$(platform)/jpeg-6b/%.c.o: upstream/jpeg-6b/src/%.c
98         @echo -e "\n\033[1mcompiling             .c -> .o:     $<\033[0m"
99         mkdir -p `dirname $@`
100         $(gcc) -Ibuild/h -c $< -o $@
101
102 # PHASE 5: linking
103 $(target_bin).ar: $(java_sources:build/java/%.java=build/$(platform)/%.java.o) build/$(platform)/org/xwt/plat/$(platform).cc.o $(jpeg_object_files)
104         @echo -e "\n\033[1marchiving             .o -> $(target_bin).ar\033[0m"
105         rm -f $(target_bin).ar
106         upstream/install/$(target)/bin/ar -cq $(target_bin).ar $^
107         upstream/install/$(target)/bin/ranlib $(target_bin).ar
108
109 $(target_bin): $(target_bin).ar
110         @echo -e "\n\033[1mlinking               .o -> $(target_bin)\033[0m"
111         mkdir -p build/$(platform)
112         PATH=upstream/install/bin:$$PATH $(gcj) -nostdlib --main=org.xwt.Main -o build/$(platform)/$(target_bin) $(target_bin).ar -Lupstream/install/$(target)/lib $(link_flags) 
113
114
115 ##############################################################################
116 # Special treatment:
117 #
118
119 build/java/org/xwt/Builtin.java: $(shell ls src/org/xwt/builtin/*.png src/org/xwt/builtin/*.xwt src/org/xwt/builtin/*.xwf)
120         @mkdir -p `dirname $@` build build/java build/class build/h build
121         echo -e "\n\033[1mzipping/uuencoding  .xwt -> .java:  build/java/org/xwt/Builtin.java\033[0m"
122         echo "package org.xwt;"                  >  build/java/org/xwt/Builtin.java
123         echo "class Builtin {"                   >> build/java/org/xwt/Builtin.java
124         echo "public static String encoded = "   >> build/java/org/xwt/Builtin.java
125         cd src; $(jar) cf - $(<:src/%=%) | \
126                 uuencode foo | tail -n +2 | grep -v '^end$$' | grep -v '^`$$' | \
127                 sed 's_\(.+\)_"\1" +_' >> ../build/java/org/xwt/Builtin.java
128         echo "\"\"; }"                           >> build/java/org/xwt/Builtin.java
129
130
131 # compile is here to force compilation of the .class files (they get used via -Ibuild) without
132 # having the individual .o's depend on the .java's (otherwise every .o gets recompiled when one .java changes)
133 gcj: .vendor .install_gcc-3.3_$(target) .compile $(target_bin)
134 build/JVM/xwt.jar: .compile
135         @echo -e "\n\033[1marchiving         .class -> .jar:   build/JVM/xwt.jar\033[0m"
136         mkdir -p build/JVM
137         echo -e "Manifest-Version: 1.0\nMain-Class: org.xwt.Main\n" > build/JVM/.manifest
138         cd build/class; $(jar) cfm ../JVM/xwt.jar ../JVM/.manifest `find . -name \*.class`;
139
140
141
142 ##############################################################################
143 # Freetype
144 #
145
146 build/mips/%.c.o: build/c/freetype/%.c install_freetype-2.1.4
147         make -s install_gcc-3.3 target=mips
148         mkdir -p build/mips
149         echo -e "\n\033[1mcompiling $< -> $@ (mips)\033[0m"
150         upstream/install/bin/mips-gcc -march=mips1 -I upstream/freetype-2.1.4/include -c -o $@ $<
151
152 build/mips/freetype.mips: $(freetype_sources:%.c=build/mips/%.c.o)
153         make -s install_newlib-1.11.0 target=mips
154         @echo -e "\n\033[1mcompiling             .c -> .mips:  $@\033[0m"
155         mkdir -p build/mips
156         upstream/install/bin/mips-gcc \
157                 -nostdlib \
158                 --static \
159                 -march=mips1 \
160                 -T src/org/xwt/imp/linker.ld \
161                 -Lbuild/mips \
162                 -Lupstream/freetype-2.1.4/objs \
163                 -o $@ \
164                 build/mips/Freetype.o \
165                 -lfreetype
166
167 build/java/org/xwt/imp/Freetype.java: build/mips/freetype.mips build/class/org/xwt/imp/MIPS.class
168         @echo -e "\n\033[1mtranslating        .mips -> .java:  $@\033[0m"
169         mkdir -p build/java/org/xwt/imp/
170         rm -f $@
171         java -cp build/class org.xwt.imp.MIPS org.xwt.imp.Freetype build/mips/freetype.mips > build/java/org/xwt/imp/Freetype.java
172
173
174
175 ##############################################################################
176 # Maintainer stuff: generating numbered builds, proposing patches
177 #
178
179 update-build:
180         cvs tag -F xwt-$(current_build)
181         (echo -n 0000; (echo "10k16o16i"; cat next.build | tr a-z A-Z; echo "1+f") | dc) | tail --bytes=5 > next.build-
182         mv next.build- next.build
183         echo -n "Next build will be "
184         cat next.build
185         cvs update CHANGES
186         echo "" >> CHANGES
187         echo `date +%d-%b`" =========== build $(current_build) ================================================" >> CHANGES
188         echo committing...
189         cvs commit -m 'this comment should not appear in CHANGES' next.build CHANGES
190         echo committed.
191
192 propose-patch:
193         @echo -n "Please type a one-line description of this bug: "; \
194         read A; \
195         echo; \
196         echo "Please type any additional comments that explain this patch."; \
197         echo "If this patch fixes a bug, include a link to bugs.xwt.org."; \
198         echo "When you are done, press control-d on a new line."; \
199         echo; \
200         (       echo -e "HELO patcher"; \
201                 echo -e "MAIL FROM:$(USER)@xwt.org"; \
202                 echo -e "RCPT TO: patches@xwt.org"; \
203                 echo -e "DATA"; \
204                 echo -e "From: $(USER)@xwt.org"; \
205                 echo -e "To: patches@xwt.org"; \
206                 echo -e "Subject: proposed patch to $(this_branch): $$A"; \
207                 echo -e ""; \
208                 cat; \
209                 echo; \
210                 cvs diff -Bud; \
211                 echo .; \
212         ) > .message
213         bash -c "cat .message > /dev/tcp/mail.xwt.org/25"     # /dev/tcp is faked by bash; not part of the os
214
215 current_build         := $(shell cat next.build)
216 this_branch           := $(shell tail -c +2 CVS/Tag 2>/dev/null || echo HEAD)
217 this_branch_flag      := $(shell test $(this_branch) = HEAD && echo || echo -r $(this_branch))
218
219 # pre-depend on compile as a sanity check
220 dist: compile
221         # this will fail if we haven't checked-in since the comment is null; we want this.
222         cvs commit -m '' > /dev/null
223         cvs tag -F xwt-$(current_build)
224
225         echo "***********************************************************"
226         echo "*  This build is $(current_build)"
227         echo "***********************************************************"
228
229         ifeq ($(shell uname -n),serverbeach.megacz.com)
230                 (make $(silent) dist-private 2>&1) >> .make-dist.out || \
231                         (tail -n 200 .make-dist.out | mail -s "Build $(current_build) FAILED" cvs@xwt.org; false)
232                 tail -n 200 .make-dist.out | \
233                         mail -s "Unsigned binaries of $(current_build) are now available" cvs@xwt.org
234         else
235                 echo -e 'export JAVA_HOME=/usr/lib/j2sdk1.4\n cd /home/xwt\n date=`date +%d-%b-%H%M`\n mkdir xwt-$$date\n cd xwt-$$date\n /usr/bin/cvs -d /cvs co $(this_branch_flag) xwt\n mv xwt/* .\n mv xwt/.* .\n rmdir xwt\n touch .make-dist.out\n nohup make dist &> /dev/null &\n echo\n cat .make-dist.out' | ssh xwt@xwt.org | grep -v "make...:.\(Entering\|Leaving\).directory"
236         endif
237
238 dist-private:
239         make $(silent) update-build
240
241         # preserve gcc across builds so we don't have to remake it
242         mkdir -p $(HOME)/dist.xwt.org-gcc
243         mv gcc gcc-
244         ln -s $(HOME)/dist.xwt.org-gcc gcc
245         mv -f gcc-/Makefile gcc/
246         mv -f gcc-/*.patch gcc/
247
248         # build it
249         nice -n 19 make all
250
251         echo
252         echo === master.dist.xwt.org ==================================
253
254         echo "copying xwt.jar to distribution area..."
255         cp xwt.jar /var/www/master.dist.xwt.org/xwt-$(current_build).jar.unsigned
256
257         echo "stripping xwt.exe and copying it to the distribution area..."
258         $(strip) build/Win32/xwt.exe -o /var/www/master.dist.xwt.org/xwt-$(current_build).exe.unsigned
259
260         echo "copying xwt.linux to distribution area..."
261         $(strip) build/Linux/xwt.linux -o /var/www/master.dist.xwt.org/xwt-$(current_build).linux.unsigned
262
263         echo "creating source tarball in distribution area..."
264         CVSROOT=/cvs cvs export -r xwt-$(current_build) xwt
265         mv xwt xwt-$(current_build)
266         tar cvzf /var/www/master.dist.xwt.org/xwt-$(current_build).tgz xwt-$(current_build)
267
268         echo
269         echo "*** DONE ******************************************"
270
271
272
273
274
275
276
277 #mips: $(prefix)/mips/lib/libm.a
278 #$(prefix)/mips/lib/libm.a: src/.newlib $(prefix)/bin/mips-gcc
279 #       mkdir -p build/$(target)/newlib
280 #       cd build/$(target)/newlib; PATH=$(prefix)/bin:$$PATH \
281 #               ../../../src/newlib-1.11.0/configure --nfp --enable-multilib --prefix=$(prefix) --target=mips
282 #       cd build/$(target)/newlib; PATH=$(prefix)/bin:$$PATH EXTRA_CFLAGS=-mstrict-align make
283 #       cd build/$(target)/newlib; make install
284 # FIXME: this is probably going to cause problems... figure out how to get by without it
285 #       touch .empty.c
286 #       $(prefix)/bin/mips-gcc -c .empty.c -o $(prefix)/mips/lib/crt0.o