2003/08/20 10:19:09
[org.ibex.core.git] / Makefile
1 #           
2 # The XWT Makefile
3 #
4
5 ## Configurables ###########################################################################
6
7 jpeg_headers := jpeglib.h jconfig.h jmorecfg.h jerror.h jinclude.h jpegint.h jchuff.h jdhuff.h jdct.h jmemsys.h jversion.h
8 jpeg_c_sources := jdapimin.c jdapistd.c jcomapi.c jcparam.c jdmaster.c jdinput.c jdmainct.c jdcoefct.c jdpostct.c jdmarker.c
9 jpeg_c_sources += jdhuff.c jdphuff.c jddctmgr.c jidctint.c jidctfst.c jidctflt.c jidctred.c jdsample.c jdcolor.c jdmerge.c
10 jpeg_c_sources += jquant1.c jquant2.c jerror.c jutils.c jmemnobs.c jmemmgr.c
11
12 # inputs
13 java_pp_sources        := $(shell find src -name \*.java.pp)
14 java_pp_postproc       := $(java_pp_sources:src/%.java.pp=bin/%.java)
15 java_generated_sources := $(java_pp_postproc) bin/org/xwt/imp/Freetype.java
16 java_sources           := $(shell find src -name \*.java)
17 java_headers           := $(java_sources:src/%.java=bin/%.h) $(java_generated_sources:bin/%.java=bin/%.h)
18 xwar_sources           := $(shell ls src/org/xwt/builtin/*.png src/org/xwt/builtin/*.xwt src/org/xwt/builtin/*.xwf)
19 cc_sources             := src/org/xwt/plat/$(platform).cc
20 c_sources              := $(jpeg_c_sources:%.c=src/org/ijg/%.c)
21
22 # freetype inputs
23 freetype_base_sources  := ftsystem.c ftmm.c ftbbox.c ftinit.c ftdebug.c ftbase.c ftglyph.c
24 freetype_other_sources := smooth/smooth.c autohint/autohint.c sfnt/sfnt.c truetype/truetype.c
25 freetype_sources       := $(freetype_base_sources:%=gcc/src/freetype-2.1.4/src/base/%)
26 freetype_sources       += $(freetype_other_sources:%=gcc/src/freetype-2.1.4/src/%)
27
28 # outputs
29 java_objects           := $(filter-out bin-$(platform)/org/xwt/plat/%, $(java_sources:src/%.java=bin-$(platform)/%.java.o))
30 java_objects           += $(filter-out bin-$(platform)/org/xwt/plat/%, $(java_generated_sources:bin/%.java=bin-$(platform)/%.java.o))
31 java_objects           += bin-$(platform)/org/xwt/plat/GCJ.java.o
32 java_objects           += $(platform_java_sources:%=bin-$(platform)/org/xwt/plat/%.java.o)
33 cc_objects             := $(cc_sources:src/%.cc=bin-$(platform)/%.cc.o)
34 c_objects              := $(c_sources:src/%.c=bin-$(platform)/%.c.o)
35
36 # tools
37 gcc_path               := $(shell pwd)/gcc/install
38 #gcc_optimizations      := -O9 -ffast-math -fomit-frame-pointer -foptimize-sibling-calls -finline-functions
39 #gcc_optimzations       += -funroll-loops -ffunction-sections -fdata-sections
40 gcc_optimizations      := -O2
41 debug                  := 
42 gcc_flags              := $(gcc_optimizations) $(debug) -Isrc/org/ijg
43 gcj_flags              := -fCLASSPATH=src
44 gcj                    := $(gcc_path)/bin/$(target)-gcj $(gcj_flags) $(gcc_flags)
45 g++                    := $(gcc_path)/bin/$(target)-g++ $(gcc_flags)
46 gcc                    := $(gcc_path)/bin/$(target)-gcc $(gcc_flags)
47 gcjh                   := $(gcc_path)/bin/$(target)-gcjh
48
49 as                     := $(gcc_path)/$(target)/bin/as
50 ar                     := $(gcc_path)/$(target)/bin/ar
51 ranlib                 := $(gcc_path)/$(target)/bin/ranlib
52 strip                  := $(gcc_path)/$(target)/bin/strip
53 jar                    := $(shell ((type fastjar &>/dev/null) && echo fastjar) || echo jar)
54
55 # path
56 PATH                   := jikes-1.18/bin:$(PATH)
57
58 # path
59 PATH                   := jikes-1.18/bin:$(PATH)
60
61
62 ## Platform-Neutral ###########################################################################
63
64 ifneq ($(verbose),true)
65 .SILENT: $(cc_objects) $(java_objects) $(java_headers) all bin/org/xwt/builtin.xwar $(target_bin) compile
66 silent := --silent
67 endif
68
69 compile: .javac $(java_generated_sources) bin/org/xwt/builtin.xwar
70         echo "compiling          .java -> .class: [all]"
71         mkdir -p bin
72         $(shell cat .javac) -classpath lib/libgcj-minimal.jar $(java_sources) $(java_generated_sources) -d bin/ 2>&1 | \
73                 grep -v ^\\[read | sed s_^\\[write\ bin/__ | sed s_.class\\]_.java_ | sed "s_^_compiling          .java -> .class: src/_"
74
75 bin/%.class: src/%.java .javac
76         @echo "compiling          .java -> .class: $<"
77         @mkdir -p bin
78         @$(shell cat .javac) -classpath lib/libgcj-minimal.jar $< -d bin/ 2>&1 | \
79                 grep -v ^\\[read | sed s_^\\[write\ bin/__ | sed s_.class\\]_.java_ | sed "s_^_compiling          .java -> .class: src/_"
80
81 $(java_pp_postproc): bin/%.java: src/%.java.pp bin/org/xwt/util/Preprocessor.class
82         @echo "preprocessing   .java.pp -> .java:  $<"
83         @mkdir -p `dirname $@`
84         @java -cp bin org.xwt.util.Preprocessor < $< > $@
85
86 # platforms
87 all: Win32 Linux Java2 #Solaris
88
89 .javac:
90         @if \
91                 type jikes && (jikes --version | grep "Version 1.18"); \
92         then \
93                 echo "public class GetBootClassPath { public static void main(String[] s) { " > GetBootClassPath.java; \
94                 echo "System.out.println(System.getProperty(\"sun.boot.class.path\")); } }" >> GetBootClassPath.java; \
95                 javac GetBootClassPath.java; \
96                 java -cp . GetBootClassPath > .bootclasspath; \
97                 rm GetBootClassPath.*; \
98                 echo -n "jikes -nowarn -sourcepath src/ -bootclasspath " > .javac; \
99                 cat .bootclasspath >> .javac; \
100         else \
101                 echo "WARNING: You do not have jikes; falling back to javac.  Compiles will be very slow."; \
102                 echo javac > .javac; \
103         fi
104
105 jikes:
106         curl ftp://www-126.ibm.com/pub/jikes/1.18/jikes-1.18.tar.bz2 | tar xjvf -
107         cd jikes-1.18; ./configure --prefix=`pwd` && make && make install
108         ln -sf jikes-1.18/bin/jikes .jikes
109
110 bin/org/xwt/builtin.xwar: $(xwar_sources)
111         mkdir -p bin/org/xwt
112         cd src; $(jar) cf ../bin/org/xwt/builtin.xwar $(xwar_sources:src/%=%)
113
114 clean:
115         rm -rf bin-* bin
116         find . -name \*~ | xargs rm -f
117         find . -name \#\*\# | xargs rm -f
118
119 update-build:
120         cvs tag -F xwt-$(current_build)
121         (echo -n 0000; (echo "10k16o16i"; cat next.build | tr a-z A-Z; echo "1+f") | dc) | tail --bytes=5 > next.build-
122         mv next.build- next.build
123         echo -n "Next build will be "
124         cat next.build
125         cvs update CHANGES
126         echo "" >> CHANGES
127         echo `date +%d-%b`" =========== build $(current_build) ================================================" >> CHANGES
128         echo committing...
129         cvs commit -m 'this comment should not appear in CHANGES' next.build CHANGES
130         echo committed.
131
132 propose-patch:
133         @echo -n "Please type a one-line description of this bug: "; \
134         read A; \
135         echo; \
136         echo "Please type any additional comments that explain this patch."; \
137         echo "If this patch fixes a bug, include a link to bugs.xwt.org."; \
138         echo "When you are done, press control-d on a new line."; \
139         echo; \
140         (       echo -e "HELO patcher"; \
141                 echo -e "MAIL FROM:$(USER)@xwt.org"; \
142                 echo -e "RCPT TO: patches@xwt.org"; \
143                 echo -e "DATA"; \
144                 echo -e "From: $(USER)@xwt.org"; \
145                 echo -e "To: patches@xwt.org"; \
146                 echo -e "Subject: proposed patch to $(this_branch): $$A"; \
147                 echo -e ""; \
148                 cat; \
149                 echo; \
150                 cvs diff -Bud; \
151                 echo .; \
152         ) > .message
153         bash -c "cat .message > /dev/tcp/mail.xwt.org/25"     # /dev/tcp is faked by bash; not part of the os
154
155 ## GCJ-Derived Platforms #######################################################################
156
157 # if the user doesn't change gcc_path, and it's not built, then we'll try to build it
158 $(shell pwd)/gcc/install/bin/$(target)-gcj: .upstream
159         make -C gcc
160
161 gcc/src/.freetype:
162         mkdir -p gcc/src
163         curl http://umn.dl.sourceforge.net/sourceforge/freetype/freetype-2.1.4.tar.gz | tar xvzf - -C gcc/src
164         cd gcc/src; patch -p0 < freetype.patch
165         touch gcc/src/.freetype
166
167 freetype.mips: gcc/src/.freetype
168         make -C gcc mips target=mips
169         $(gcc_path)/bin/mips-gcc \
170                 --static \
171                 -march=r3000 \
172                 -msoft-float \
173                 -o freetype.mips \
174                 -I gcc/src/freetype-2.1.4/include \
175                 $(freetype_sources) \
176                 -Wl,--warn-once \
177                 src/org/xwt/imp/Freetype.c \
178                 $(gcc_path)/mips/lib/libc.a \
179                 -Wl,-T,$(gcc_path)/mips/lib/nullmon.ld
180
181 bin/org/xwt/imp/Freetype.java: freetype.mips bin/org/xwt/imp/MIPS.class
182         @echo "translating        .mips -> .java:  $<"
183         @java -cp bin org.xwt.imp.MIPS org.xwt.imp.Freetype < freetype.mips > bin/org/xwt/imp/Freetype.java
184
185 # compile is here to force compilation of the .class files (they get used via -Ibin/) without
186 # having the individual .o's depend on the .java's (otherwise every .o gets recompiled when one .java changes)
187 gcj: $(gcc_path)/bin/$(target)-gcj compile $(target_bin)
188
189 $(target_bin): $(java_objects) $(cc_objects) $(c_objects) bin-$(platform)/org/xwt/builtin.o
190         @echo "linking               .o -> $(target_bin)"
191         $(gcj) --main=org.xwt.Main -o bin-$(platform)/$(target_bin) $^ $(platform_link) 
192
193 bin-$(platform)/org/xwt/builtin.o: bin/org/xwt/builtin.xwar
194         @echo "wrapping           .xwar -> .o:     bin/org/xwt/builtin.o"
195         @(echo "unsigned int builtin_xwar_length = ";\
196           (wc -c bin/org/xwt/builtin.xwar | sed "s_bin.*__");\
197           echo \;;\
198           echo "unsigned char builtin_xwar[] = {";\
199           hexdump -ve '"0x" 1/1 "%x,\n"' bin/org/xwt/builtin.xwar;\
200           echo "};") > .builtin.c
201         $(gcc) -c .builtin.c -o bin-$(platform)/org/xwt/builtin.o
202
203 $(java_headers): bin/%.h: bin/%.class
204         @echo "extracting        .class -> .h:     $<"
205         cd bin; find `echo $< | sed s/.class$$// | sed s_^bin/__ `*.class |\
206                 sed s_/_._g | sed s/.class$$// | sed s/.java$$// |\
207                         xargs $(gcjh) --classpath .
208
209 $(java_objects): bin-$(platform)/%.java.o: src/%.java
210         @echo "compiling          .java -> .o:     $<"
211         mkdir -p `dirname $@`
212         $(gcj) -c $< -o $@
213
214 # unpack and patch the ijg library
215 src/org/ijg/jmorecfg.h: src/org/ijg/jpegsrc.v6b.tar.gz src/org/ijg/jmorecfg.h.patch
216         cd src/org/ijg/; tar xzf jpegsrc.v6b.tar.gz
217         cd src/org/ijg/jpeg-6b; ./configure --target=$(target)
218         cd src/org/ijg/jpeg-6b; mv $(jpeg_c_sources) $(jpeg_headers) ..
219         cd src/org/ijg; patch -l -p0 < jmorecfg.h.patch
220         rm -rf src/org/ijg/jpeg-6b
221
222 $(cc_objects): bin-$(platform)/%.cc.o: src/%.cc $(java_headers) src/org/ijg/jmorecfg.h
223         @echo "compiling            .cc -> .o:     $<"
224         @mkdir -p `dirname $@`
225         $(g++) -I/usr/X11R6/include/ -I$(gcc_path)/include -Ibin -Iupstream/$(platform)/include -Wno-multichar -c $< -o $@
226
227 $(c_objects): bin-$(platform)/%.c.o: src/%.c src/org/ijg/jmorecfg.h
228         @echo "compiling             .c -> .o:     $<"
229         @mkdir -p `dirname $@`
230         $(gcc) -Ibin -c $< -o $@
231
232 .upstream:
233         mkdir -p gcc/install; curl http://www.megacz.com/upstream.tgz | tar xvzhf - -C gcc/install
234         touch .upstream
235
236
237 ## Platforms ##############################################################################
238
239 Linux:
240         echo -e "\\n=== Linux ========================================="
241         make gcj \
242                 platform=Linux \
243                 target=i686-pc-linux-gnu \
244                 target_bin=xwt.linux \
245                 platform_link="-L$(gcc_path)/lib -L/usr/X11R6/lib -lX11 -lXext --static" \
246                 platform_java_sources="POSIX X11"
247
248 Solaris:
249         echo -e "\\n=== Solaris ========================================="
250         make gcj \
251                 platform=Solaris \
252                 target=sparc-sun-solaris2.7 \
253                 target_bin=xwt.solaris \
254                 platform_link="-L$(gcc_path)/lib -lX11 -lXext" \
255                 platform_java_sources="POSIX X11"
256
257 Win32:
258         echo -e "\\n=== Win32 ========================================="
259         make gcj \
260                 platform=Win32 \
261                 target=i686-pc-mingw32 \
262                 target_bin=xwt.exe \
263                 platform_link="-Wl,--subsystem,windows -lcomdlg32" \
264                 platform_java_sources="Win32"
265
266 Darwin:
267         echo -e "\\n=== Darwin ========================================="
268         ranlib upstream/Darwin/lib/*.a
269         ar x /usr/lib/libcc_dynamic.a upstream/Darwin/lib/darwin-fpsave.o
270         make gcj \
271                 platform=Darwin \
272                 target=powerpc-apple-darwin \
273                 target_bin=xwt.darwin \
274                 platform_link="upstream/Darwin/lib/*.[oa] $(gcc_path)/lib/libgcj.a" \
275                 platform_java_sources="POSIX X11"
276
277 Carbon:
278         echo -e "\\n=== Carbon ========================================="
279         make gcj \
280                 platform=Carbon \
281                 target=powerpc-apple-darwin \
282                 target_bin=xwt.carbon \
283                 platform_link="$(gcc_path)/lib/libgcj.a -Xlinker -framework -Xlinker Carbon" \
284                 platform_java_sources="POSIX Carbon"
285
286 Java2: compile bin/org/xwt/builtin.xwar
287         echo -e "\\n=== Java2 ========================================="
288         echo "archiving         .class -> .jar"
289         mkdir -p bin-Java2
290         echo -e "Manifest-Version: 1.0\nMain-Class: org.xwt.Main\n" > bin/.manifest
291         cd bin; $(jar) cvfm ../bin-Java2/xwt.jar .manifest \
292                 org/xwt/builtin.xwar \
293                 `find . -name \*.class | grep -v org/xwt/plat/` \
294                 org/xwt/plat/AWT*.class org/xwt/plat/Java2*.class | tr \\012 \\015
295         echo
296
297 PalmOS:
298         echo "PalmOS is not yet supported"
299         false
300
301
302 ## master.dist.xwt.org ############################################################################
303
304 current_build         := $(shell cat next.build)
305 this_branch           := $(shell tail -c +2 CVS/Tag 2>/dev/null || echo HEAD)
306 this_branch_flag      := $(shell test $(this_branch) = HEAD && echo || echo -r $(this_branch))
307
308 # pre-depend on compile as a sanity check
309 dist: compile
310         # this will fail if we haven't checked-in since the comment is null; we want this.
311         cvs commit -m '' > /dev/null
312         cvs tag -F xwt-$(current_build)
313
314         echo "***********************************************************"
315         echo "*  This build is $(current_build)"
316         echo "***********************************************************"
317
318         ifeq ($(shell uname -n),serverbeach.megacz.com)
319                 (make $(silent) dist-private 2>&1) >> .make-dist.out || \
320                         (tail -n 200 .make-dist.out | mail -s "Build $(current_build) FAILED" cvs@xwt.org; false)
321                 tail -n 200 .make-dist.out | \
322                         mail -s "Unsigned binaries of $(current_build) are now available" cvs@xwt.org
323         else
324                 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"
325         endif
326
327
328 dist-private:
329         make $(silent) update-build
330
331         # preserve gcc across builds so we don't have to remake it
332         mkdir -p $(HOME)/dist.xwt.org-gcc
333         mv gcc gcc-
334         ln -s $(HOME)/dist.xwt.org-gcc gcc
335         mv -f gcc-/Makefile gcc/
336         mv -f gcc-/*.patch gcc/
337
338         # build it
339         nice -n 19 make all
340
341         echo
342         echo === master.dist.xwt.org ==================================
343
344         echo "copying xwt.jar to distribution area..."
345         cp bin-Java2/xwt.jar /var/www/master.dist.xwt.org/xwt-$(current_build).jar.unsigned
346
347         echo "stripping xwt.exe and copying it to the distribution area..."
348         $(strip) bin-Win32/xwt.exe -o /var/www/master.dist.xwt.org/xwt-$(current_build).exe.unsigned
349
350         echo "copying xwt.linux to distribution area..."
351         $(strip) bin-Linux/xwt.linux -o /var/www/master.dist.xwt.org/xwt-$(current_build).linux.unsigned
352
353         echo "creating source tarball in distribution area..."
354         CVSROOT=/cvs cvs export -r xwt-$(current_build) xwt
355         mv xwt xwt-$(current_build)
356         tar cvzf /var/www/master.dist.xwt.org/xwt-$(current_build).tgz xwt-$(current_build)
357
358         echo
359         echo "*** DONE ******************************************"