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