2003/11/13 05:04:20
[org.ibex.core.git] / Makefile
1 #############################################################################
2 #
3 # The XWT Makefile
4
5 #
6
7 all:      JVM Linux Win32 Darwin #Solaris
8
9 clean:
10         rm -rf .jikes .configure* .install* build .compile .build*
11         find upstream -name config.cache -exec rm {} \;
12
13 JVM:        build/JVM/xwt.jar
14 Linux:    ; make gcj platform=Linux   target=i686-pc-linux-gnu    link_flags="-lX11 -lXext --static"
15 Solaris:  ; make gcj platform=Solaris target=sparc-sun-solaris2.7 link_flags="-lX11 -lXext"
16 Win32:    ; make gcj platform=Win32   target=i686-pc-mingw32      link_flags="-Wl,--subsystem,windows -lcomdlg32" target_bin=xwt.exe
17 Darwin:   ; make gcj platform=Darwin target=powerpc-apple-darwin link_flags="$(darwin_linker_flags)"
18
19 # default
20 platform            := JVM
21
22 darwin_libdir       := upstream/install/powerpc-apple-darwin/lib
23 darwin_linker_flags := -Wl,-dylib_file,/usr/lib/libSystem.B.dylib:$(darwin_libdir)/libSystem.B.dylib
24 darwin_linker_flags += -Wl,-dylib_file,/usr/lib/system/libmathCommon.A.dylib:$(darwin_libdir)/libmathCommon.A.dylib
25 darwin_linker_flags += -Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:$(darwin_libdir)/libGL.dylib
26 darwin_linker_flags += -Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib:$(darwin_libdir)/libGLU.dylib
27 darwin_linker_flags += -lSystem.B -lmathCommon.A -lGL -lGLU
28
29
30 #############################################################################
31 # Configurables:
32 #
33 target_bin             := xwt.$(shell echo $(platform) | tr A-Z a-z)
34 jikes_flags            := -nowarn -sourcepath src/
35 gcc_optimizations      := -O2
36 #gcc_optimizations      := -O9 -ffast-math -fomit-frame-pointer -foptimize-sibling-calls
37 #gcc_optimizations      += -finline-functions -funroll-loops -ffunction-sections -fdata-sections
38 gcc_flags              := -nostdinc $(gcc_optimizations) -Ibuild/h -Iupstream/jpeg-6b/src/ -Iupstream/jpeg-6b/build-$(target)/
39 gcj_flags              := -fCLASSPATH=build/java
40 gcj                    := upstream/install/bin/$(target)-gcj $(gcc_flags) $(gcj_flags)
41 gcjh                   := $(shell test -e `pwd`/upstream/install/bin/$(target)-gcjh && echo `pwd`/upstream/install/bin/$(target)-gcjh || echo `pwd`/upstream/install/bin/gcjh)
42 g++                    := upstream/install/bin/$(target)-gcj $(gcc_flags)
43 gcc                    := upstream/install/bin/$(target)-gcc $(gcc_flags)
44 jar                    := $(shell ((type fastjar &>/dev/null) && echo fastjar) || echo jar)
45
46 include Makefile.upstream
47
48 # figure out what stuff in org.xwt.plat.* this platform requires (its superclasses)
49 all_java_sources  := $(patsubst src/%.java,     build/java/%.java, $(shell find src -name '*.java'))
50
51 java_sources      := $(all_java_sources)
52 nonplat_java_sources      := $(filter-out build/java/org/xwt/plat/%, $(all_java_sources))
53 plat_java_sources      := $(filter build/java/org/xwt/plat/%, $(all_java_sources))
54
55 build/java/org/xwt/%.java: src/org/xwt/%.java
56         make build/class/org/xwt/util/Preprocessor.class
57         @echo -e "\n\033[1mpreprocessing      .java -> .java:  $<\033[0m"
58         mkdir -p `dirname $@`; java -cp build/class org.xwt.util.Preprocessor < $< > $@
59 build/java/%.java: src/%.java ; @echo linking $@; mkdir -p $(@D); ln -fs `echo $(@D)/ | sed 's_[^/]*//*_../_g'`/$< $@
60
61 build/cc/%.cc:     src/%.c    ; @echo linking $@; mkdir -p $(@D); ln -fs `echo $(@D)/ | sed 's_[^/]*//*_../_g'`/$< $@
62 build/c/jpeg/%.c:     upstream/jpeg-6b/src/%.c
63         @echo linking $@; mkdir -p $(@D); ln -fs `echo $(@D)/ | sed 's_[^/]*//*_../_g'`/$< $@
64 build/res/%:       src/%      ; @echo linking $@; mkdir -p $(@D); ln -fs `echo $(@D)/ | sed 's_[^/]*//*_../_g'`/$< $@
65
66 build/class/org/xwt/util/Preprocessor.class: src/org/xwt/util/Preprocessor.java .jikes
67         @echo -e "\n\033[1mcompiling          .java -> .class: $<\033[0m"
68         mkdir -p build/class/org/xwt/util/
69         ./.jikes $<
70
71 # this forces a clean build every time because jikes is so damn buggy
72 preprocess: $(all_java_sources)
73 compile: .compile
74 .compile: $(all_java_sources) .jikes
75         @echo -e "\n\033[1mcompiling          .java -> .class: src/**/*.java\033[0m"
76         rm -rf build/class
77         mkdir -p build/class
78         @./.jikes $(all_java_sources)
79         touch .compile
80
81 # PHASE 4: gcj-generated headers
82 java_headers          := $(all_java_sources:build/java/%.java=build/h/%.h) 
83 build/h/edu/stanford/ejalbert/BrowserLauncher.h:; mkdir -p $(@D); touch $@
84 build/h/%.h: build/class/%.class
85         @echo -e "\n\033[1mextracting        .class -> .h:     $<\033[0m"
86         mkdir -p `dirname $@`
87         ls `echo $< | sed s/.class\$$//`*.class |\
88                  sed s_build/class/__ | sed s/.class\$$//g | sed s_/_._g | (cd build/class; xargs $(gcjh) -d ../h --classpath .)
89
90 # a hack since we've disabled gcj's awt implementation
91 build/$(platform)/org/xwt/plat/Java2.java.o:
92         touch .empty.c; mkdir -p $(@D); $(gcc) -c .empty.c -o $@;
93 build/$(platform)/org/xwt/plat/AWT.java.o:
94         touch .empty.c; mkdir -p $(@D); $(gcc) -c .empty.c -o $@;
95
96 build/$(platform)/%.java.o: build/java/%.java
97         @echo -e "\n\033[1mcompiling          .java -> .o:     $<\033[0m"
98         mkdir -p `dirname $@`
99         $(gcj) -c $< -o $@
100
101 headers: $(java_headers)
102
103 build/$(platform)/org/xwt/plat/$(platform).cc.o: src/org/xwt/plat/$(platform).cc src/org/xwt/plat/*.cc .configure_jpeg-6b_$(target)
104         @make headers
105         @echo -e "\n\033[1mcompiling            .cc -> .o:     $<\033[0m"
106         mkdir -p `dirname $@`
107         $(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 $@
108
109 build/$(platform)/jpeg-6b/%.c.o: upstream/jpeg-6b/src/%.c
110         @echo -e "\n\033[1mcompiling             .c -> .o:     $<\033[0m"
111         mkdir -p `dirname $@`
112         $(gcc) -Ibuild/h -c $< -o $@
113
114 # PHASE 5: linking
115 # FIXME use libjpeg
116 jpeg_sources    := jdapimin.c jdapistd.c jcomapi.c jcparam.c jdmaster.c jdinput.c jdmainct.c jdcoefct.c jdpostct.c jdmarker.c
117 jpeg_sources    += jdhuff.c jdphuff.c jddctmgr.c jidctint.c jidctfst.c jidctflt.c jidctred.c jdsample.c jdcolor.c jdmerge.c
118 jpeg_sources    += jquant1.c jquant2.c jerror.c jutils.c jmemnobs.c jmemmgr.c
119
120 upstream/jpeg-6b/build-$(target)/libjpeg.a: .install_jpeg-6b_$(target)
121 java_objects := $(nonplat_java_sources:build/java/%.java=build/$(platform)/%.java.o)
122
123 build/$(platform)/$(platform).ar: $(java_objects) $(plat_java_sources:build/java/%.java=build/$(platform)/%.java.o)
124         @echo -e "\n\033[1marchiving             .o -> .a\033[0m"
125         mkdir -p build/$(platform)
126         upstream/install/$(target)/bin/ar rc $@ $?
127         upstream/install/$(target)/bin/ranlib $@
128
129 $(target_bin): build/$(platform)/org/xwt/plat/$(platform).cc.o upstream/jpeg-6b/build-$(target)/libjpeg.a build/$(platform)/builtin.o build/$(platform)/$(platform).ar 
130         @echo -e "\n\033[1mlinking               .o -> $(target_bin)\033[0m"
131         mkdir -p build/$(platform)
132         PATH=upstream/install/bin:$$PATH $(gcj) -v --main=org.xwt.Main -o build/$(platform)/$(target_bin) -Lupstream/install/$(target)/lib build/$(platform)/org/xwt/plat/$(platform).java.o $^ $(link_flags)
133
134
135 ##############################################################################
136 # Special treatment:
137 #
138
139 builtin_src := $(shell find src/org/xwt/builtin -name '*.*')
140 build/res/fonts/vera: .download_vera-1.10
141         mkdir -p build/res/fonts/vera
142         cd build/res/fonts/vera; ln -s ../../../../upstream/vera-1.10/ttf-bitstream-vera-1.10/Vera.ttf
143         cd build/res/fonts/vera; ln -s ../../../../upstream/vera-1.10/ttf-bitstream-vera-1.10/VeraBd.ttf
144 build/res/builtin.jar: $(builtin_src:src/%=build/res/%) build/res/freetype.mips build/res/libmspack.mips build/res/fonts/vera
145         @echo -e "\n\033[1mzipping            res/* -> .jar: builtin.jar\033[0m"
146         cd build/res; $(jar) cf builtin.jar $(^:build/res/%=%)
147
148 build/$(platform)/builtin.o: build/res/builtin.jar
149         @echo -e "\n\033[1mwrapping            .jar -> .o: resources.o\033[0m"
150         @(echo "unsigned int builtin_length = ";                                \
151                 (wc -c build/res/builtin.jar | sed "s_build.*__");              \
152                 echo \;;                                                        \
153                 echo "unsigned char builtin_bytes[] = {";                       \
154                 hexdump -ve '"0x" 1/1 "%x,\n"' build/res/builtin.jar;           \
155                 echo "};") > .builtin.c
156         $(gcc) -c .builtin.c -o build/$(platform)/builtin.o
157
158 # compile is here to force compilation of the .class files (they get used via -Ibuild) without
159 # having the individual .o's depend on the .java's (otherwise every .o gets recompiled when one .java changes)
160 gcj: .vendor .compile .install_gcc-3.3_$(target) $(target_bin)
161
162 build/JVM/xwt.jar: .compile build/res/builtin.jar
163         @echo -e "\n\033[1marchiving         .class -> .jar:   build/JVM/xwt.jar\033[0m"
164         mkdir -p build/JVM
165         echo -e "Manifest-Version: 1.0\nMain-Class: org.xwt.Main\n" > build/JVM/.manifest
166         cd build/class/org/xwt; ln -sf ../../../res/builtin.jar
167         cd build/class; $(jar) cfm ../JVM/xwt.jar ../JVM/.manifest `find . \! -type d`;
168
169
170
171 ##############################################################################
172 # Freetype
173 #
174
175 build/mips/%.c.o: src/%.c
176         make .install_freetype-2.1.4_mips-unknown-elf target=mips-unknown-elf
177         mkdir -p $(@D)
178         echo -e "\n\033[1mcompiling $< -> $@ (mips)\033[0m"
179         upstream/install/bin/mips-unknown-elf-gcc -march=r3000 \
180                 -Iupstream/freetype-2.1.4/src/include  \
181                 -Iupstream/libmspack-20030726/src/mspack \
182                 -c -o $@ $<
183
184 build/res/freetype.mips: build/mips/org/xwt/translators/Freetype.c.o build/mips/org/xwt/mips/crt0.c.o build/mips/org/xwt/mips/syscalls.c.o
185         make .install_freetype-2.1.4_mips-unknown-elf target=mips-unknown-elf
186         @echo -e "\n\033[1mlinking               .o -> .mips:  $@\033[0m"
187         mkdir -p build/mips build/res
188         upstream/install/bin/mips-unknown-elf-gcc \
189                 -nostdlib \
190                 --static \
191                 -march=mips1 \
192                 -T src/org/xwt/mips/linker.ld \
193                 -Lbuild/mips \
194                 -Lupstream/freetype-2.1.4/src/objs \
195                 -o $@ \
196                 build/mips/org/xwt/translators/Freetype.c.o \
197                 --strip \
198                 -lfreetype
199
200 .install_libmspack-20030726:; make .install_libmspack-20030726_mips-unknown-elf target=mips-unknown-elf
201 build/res/libmspack.mips: .install_libmspack-20030726 build/mips/org/xwt/translators/MSPack.c.o build/mips/org/xwt/mips/crt0.c.o build/mips/org/xwt/mips/syscalls.c.o
202         @echo -e "\n\033[1mlinking               .o -> .mips:  $@\033[0m"
203         mkdir -p build/mips build/res
204         upstream/install/bin/mips-unknown-elf-gcc \
205                 -nostdlib \
206                 --static \
207                 -march=mips1 \
208                 -T src/org/xwt/mips/linker.ld \
209                 -Lbuild/mips \
210                 -Lupstream/libmspack-20030726/src/mspack \
211                 -Lupstream/libmspack-20030726/build-mips-unknown-elf \
212                 -o $@ \
213                 build/mips/org/xwt/translators/MSPack.c.o \
214                 --strip \
215                 -lmspack
216
217
218
219
220 ##############################################################################
221 # Maintainer stuff: generating numbered builds, proposing patches
222 #
223
224 update-build:
225         cvs tag -F xwt-$(current_build)
226         (echo -n 0000; (echo "10k16o16i"; cat next.build | tr a-z A-Z; echo "1+f") | dc) | tail --bytes=5 > next.build-
227         mv next.build- next.build
228         echo -n "Next build will be "
229         cat next.build
230         cvs update CHANGES
231         echo "" >> CHANGES
232         echo `date +%d-%b`" =========== build $(current_build) ================================================" >> CHANGES
233         echo committing...
234         cvs commit -m 'this comment should not appear in CHANGES' next.build CHANGES
235         echo committed.
236
237 propose-patch:
238         @echo -n "Please type a one-line description of this bug: "; \
239         read A; \
240         echo; \
241         echo "Please type any additional comments that explain this patch."; \
242         echo "If this patch fixes a bug, include a link to bugs.xwt.org."; \
243         echo "When you are done, press control-d on a new line."; \
244         echo; \
245         (       echo -e "HELO patcher"; \
246                 echo -e "MAIL FROM:$(USER)@xwt.org"; \
247                 echo -e "RCPT TO: patches@xwt.org"; \
248                 echo -e "DATA"; \
249                 echo -e "From: $(USER)@xwt.org"; \
250                 echo -e "To: patches@xwt.org"; \
251                 echo -e "Subject: proposed patch to $(this_branch): $$A"; \
252                 echo -e ""; \
253                 cat; \
254                 echo; \
255                 cvs diff -Bud; \
256                 echo .; \
257         ) > .message
258         bash -c "cat .message > /dev/tcp/mail.xwt.org/25"     # /dev/tcp is faked by bash; not part of the os
259
260 current_build         := $(shell cat next.build)
261 this_branch           := $(shell tail -c +2 CVS/Tag 2>/dev/null || echo HEAD)
262 this_branch_flag      := $(shell test $(this_branch) = HEAD && echo || echo -r $(this_branch))
263
264 # pre-depend on compile as a sanity check
265 dist: compile
266         echo "***********************************************************"
267         echo "*  This build is $(current_build)"
268         echo "***********************************************************"
269
270         ifeq ($(shell uname -n),megacz.com)
271                 (make $(silent) dist-private 2>&1) >> .make-dist.out || \
272                         (tail -n 200 .make-dist.out | mail -s "Build $(current_build) FAILED" cvs@xwt.org; false)
273                 tail -n 200 .make-dist.out | \
274                         mail -s "Unsigned binaries of $(current_build) are now available" cvs@xwt.org
275         else
276                 # this will fail if we haven't checked-in since the comment is null; we want this.
277                 cvs commit -m '' > /dev/null
278                 cvs tag -F xwt-$(current_build)
279
280 #               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 &\n echo\n cat .make-dist.out' | ssh xwt@xwt.org | grep -v "make...:.\(Entering\|Leaving\).directory"
281                 echo -e 'export JAVA_HOME=/usr/lib/j2sdk1.4\n cd /home/xwt/dist\n/usr/bin/cvs update $(this_branch_flag)\ntouch .make-dist.out\n make clean\n nohup make dist &\n' | ssh xwt@xwt.org | grep -v "make...:.\(Entering\|Leaving\).directory"
282         endif
283
284 dist-private:
285         make $(silent) update-build
286
287         # build it
288         nice -n 19 make all
289
290         echo
291         echo === master.dist.xwt.org ==================================
292
293         echo "copying xwt.jar to distribution area..."
294         cp build/JVM/xwt.jar /var/www/master.dist.xwt.org/xwt-$(current_build).jar.unsigned
295
296         echo "stripping xwt.exe and copying it to the distribution area..."
297         upstream/install/i686-pc-mingw32/bin/strip build/Win32/xwt.exe \
298                 -o /var/www/master.dist.xwt.org/xwt-$(current_build).exe.unsigned
299
300         echo "copying xwt.linux to distribution area..."
301         upstream/install/i686-pc-linux-gnu/bin/strip build/Linux/xwt.linux \
302                 -o /var/www/master.dist.xwt.org/xwt-$(current_build).linux.unsigned
303
304 #       echo "copying xwt.solaris to distribution area..."
305 #       upstream/install/sparc-sun-solaris2.7/bin/strip build/Solaris/xwt.solaris \
306 #               -o /var/www/master.dist.xwt.org/xwt-$(current_build).solaris.unsigned
307
308         echo "copying xwt.darwin to distribution area..."
309         upstream/install/powerpc-apple-darwin/bin/strip build/Darwin/xwt.darwin \
310                 -o /var/www/master.dist.xwt.org/xwt-$(current_build).darwin.unsigned
311
312         echo "creating source tarball in distribution area..."
313         CVSROOT=/cvs cvs export -r xwt-$(current_build) xwt
314         mv xwt xwt-$(current_build)
315         tar cvzf /var/www/master.dist.xwt.org/xwt-$(current_build).tgz xwt-$(current_build)
316
317         echo
318         echo "*** DONE ******************************************"
319
320
321 # this is for Adam; don't mess with it
322 test: JVM; /System/Library/Frameworks/JavaVM.framework/Versions/1.3.1/Commands/java -jar build/JVM/xwt.jar http://localhost/demo.xwar
323 #test: JVM; java -jar build/JVM/xwt.jar http://localhost/demo.xwar
324
325 oldcompile: preprocess; CLASSPATH=$$CLASSPATH:lib/libgcj-minimal.jar javac -d build/class `find build/java/ -name \*.java`