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