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