2003/07/05 22:19:16
[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=src
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/$(target)-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 $(java_objects): bin-$(platform)/%.java.o: src/%.java
165         @echo "compiling   .java -> .o:     $<"
166         mkdir -p `dirname $@`
167         $(gcj) -c $< -o $@
168
169 # unpack and patch the ijg library
170 src/org/ijg/jmorecfg.h: src/org/ijg/jpegsrc.v6b.tar.gz src/org/ijg/jmorecfg.h.patch
171         cd src/org/ijg/; tar xzf jpegsrc.v6b.tar.gz
172         cd src/org/ijg/jpeg-6b; ./configure --target=$(target)
173         cd src/org/ijg/jpeg-6b; mv $(jpeg_c_sources) $(jpeg_headers) ..
174         cd src/org/ijg; patch -l -p0 < jmorecfg.h.patch
175         rm -rf src/org/ijg/jpeg-6b
176
177 $(cc_objects): bin-$(platform)/%.cc.o: src/%.cc $(java_headers) src/org/ijg/jmorecfg.h
178         @echo "compiling     .cc -> .o:     $<"
179         @mkdir -p `dirname $@`
180         $(g++) -I/usr/X11R6/include/ -I$(gcc_path)/include -Ibin -Iupstream/$(platform)/include -Wno-multichar -c $< -o $@
181
182 $(c_objects): bin-$(platform)/%.c.o: src/%.c src/org/ijg/jmorecfg.h
183         @echo "compiling      .c -> .o:     $<"
184         @mkdir -p `dirname $@`
185         $(gcc) -Ibin -c $< -o $@
186
187 upstream:
188         cvs -d :pserver:cvs@cvs.xwt.org:/ export -r HEAD upstream
189
190 upstream/Carbon/include/Carbon: upstream
191         # A disgusting hack to create symlinks to the OS X Framework headers, since the
192         # standard GCC doesn't know how to search Frameworks for header files.
193         outdir="upstream/Carbon/include"; \
194         mkdir -p $$outdir; \
195         librarydir="/System/Library"; \
196         frameworksubdir="Frameworks"; \
197         cd $$outdir; \
198         function CreateHeaderDirectories() \
199         { \
200                 for framework in `ls -d $$1/*.framework`; do \
201                         name=`echo $$framework | sed 's/.*\/\([^/]*\)\.framework/\1/'`; \
202                         if [[ $$name != "" && ! -e $$name && -e $$framework/Headers ]]; then \
203                                 ln -s $$framework/Headers $$name; \
204                                 if [[ -e $$framework/$$frameworksubdir ]]; then \
205                                         CreateHeaderDirectories $$framework/$$frameworksubdir; \
206                                 fi; \
207                         fi; \
208                 done; \
209         }; \
210         CreateHeaderDirectories $$librarydir/$$frameworksubdir;
211
212 ## Platforms ##############################################################################
213
214 Linux:
215         echo -e "\\n=== Linux ========================================="
216         make gcj \
217                 platform=Linux \
218                 target=i686-pc-linux-gnu \
219                 target_bin=xwt.linux \
220                 platform_link="-L$(gcc_path)/lib -L/usr/X11R6/lib -lX11 -lXext --static" \
221                 platform_java_sources="POSIX X11"
222
223 Win32:
224         echo -e "\\n=== Win32 ========================================="
225         make gcj \
226                 platform=Win32 \
227                 target=i686-pc-mingw32 \
228                 target_bin=xwt.exe \
229                 platform_link="-Wl,--subsystem,windows -lcomdlg32" \
230                 platform_java_sources="Win32"
231
232 Darwin: upstream
233         echo -e "\\n=== Darwin ========================================="
234         ranlib upstream/Darwin/lib/*.a
235         ar x /usr/lib/libcc_dynamic.a upstream/Darwin/lib/darwin-fpsave.o
236         make gcj \
237                 platform=Darwin \
238                 target=powerpc-apple-darwin \
239                 target_bin=xwt.darwin \
240                 platform_link="upstream/Darwin/lib/*.[oa] $(gcc_path)/lib/libgcj.a" \
241                 platform_java_sources="POSIX X11"
242
243 Carbon: upstream/Carbon/include/Carbon upstream
244         echo -e "\\n=== Carbon ========================================="
245         cd gcc/install/bin; ln -sf gcjh powerpc-apple-darwin-gcjh
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: compile 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 # pre-depend on compile as a sanity check
276 dist: compile
277         # this will fail if we haven't checked-in since the comment is null; we want this.
278         cvs commit -m '' > /dev/null
279         cvs tag -F xwt-$(current_build)
280
281         echo "***********************************************************"
282         echo "*  This build is $(current_build)"
283         echo "***********************************************************"
284
285         ifeq ($(shell uname -n),serverbeach.megacz.com)
286                 (make $(silent) dist-private 2>&1) >> .make-dist.out || \
287                         (tail -n 200 .make-dist.out | mail -s "Build $(current_build) FAILED" cvs@xwt.org; false)
288                 tail -n 200 .make-dist.out | \
289                         mail -s "Unsigned binaries of $(current_build) are now available" cvs@xwt.org
290         else
291                 echo 'cd /home/xwt;date=`date +%d-%b-%H%M`;mkdir xwt-$$date;cd xwt-$$date;/usr/bin/cvs -d /cvs co $(this_branch_flag) xwt;mv xwt/* .;mv xwt/.* .;rmdir xwt;touch .make-dist.out;nohup make dist &> /dev/null &;echo;cat .make-dist.out' | ssh xwt@xwt.org | 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         mkdir -p $(HOME)/dist.xwt.org-gcc
300         mv gcc gcc-
301         ln -s $(HOME)/dist.xwt.org-gcc gcc
302         mv -f gcc-/Makefile gcc/
303         mv -f gcc-/gcc.patch gcc/
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 ******************************************"