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