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