2003/09/07 01:58:44
[org.ibex.core.git] / Makefile
1 #############################################################################
2 #
3 # The XWT Makefile
4 #
5
6 all:      JVM Linux Win32 Carbon Java2 #Solaris
7
8 JVM:        build/JVM/xwt.jar
9 Linux:    ; make gcj platform=Linux   target=i686-pc-linux-gnu    link_flags="-lX11 -lXext --static"
10 Solaris:  ; make gcj platform=Solaris target=sparc-sun-solaris2.7 link_flags="-lX11 -lXext"
11 Win32:    ; make gcj platform=Win32   target=i686-pc-mingw32      link_flags="-Wl,--subsystem,windows -lcomdlg32" target_bin=xwt.exe
12 Darwin:   ; make gcj platform=Darwin  target=powerpc-apple-darwin link_flags=-Wl,-framework,Carbon,-framework,OpenGL,-framework,AGL,-framework,SystemConfiguration
13
14
15 #############################################################################
16 # Configurables:
17 #
18 target_bin             := xwt.$(shell echo $(platform) | tr A-Z a-z)
19 jikes_flags            := -nowarn -sourcepath src/
20 gcc_optimizations      := -O2
21 #gcc_optimizations      := -O9 -ffast-math -fomit-frame-pointer -foptimize-sibling-calls
22 #gcc_optimizations      += -finline-functions -funroll-loops -ffunction-sections -fdata-sections
23 gcc_flags              := $(gcc_optimizations) -Ibuild/h -Iupstream/jpeg-6b/src/
24 gcj_flags              := -fCLASSPATH=build/java
25 gcj                    := upstream/install/bin/$(target)-gcj $(gcc_flags) $(gcj_flags)
26 g++                    := upstream/install/bin/$(target)-g++ $(gcc_flags)
27 gcc                    := upstream/install/bin/$(target)-gcc $(gcc_flags)
28 jar                    := $(shell ((type fastjar &>/dev/null) && echo fastjar) || echo jar)
29
30
31
32 include Makefile.upstream
33 jpeg_c_sources    := jdapimin.c jdapistd.c jcomapi.c jcparam.c jdmaster.c jdinput.c jdmainct.c jdcoefct.c jdpostct.c jdmarker.c
34 jpeg_c_sources    += jdhuff.c jdphuff.c jddctmgr.c jidctint.c jidctfst.c jidctflt.c jidctred.c jdsample.c jdcolor.c jdmerge.c
35 jpeg_c_sources    += jquant1.c jquant2.c jerror.c jutils.c jmemnobs.c jmemmgr.c
36
37 upstream/jpeg-6b/src/%.c: download_jpeg-6b
38
39 freetype_sources    := ftsystem.c ftmm.c ftbbox.c ftinit.c ftdebug.c ftbase.c ftglyph.c smooth.c sfnt.c truetype.c
40 upstream/freetype-2.1.4/%.c: download_freetype-2.1.4
41
42 java_sources      := $(patsubst src/%.java,    build/java/%.java, $(shell find src -name \*.java))
43 java_sources      += $(patsubst src/%.java.pp, build/java/%.java, $(shell find src -name \*.java.pp))
44 java_sources      += build/java/org/xwt/Builtin.java
45
46 build/java/%.java: src/%.java ; @echo linking $@; mkdir -p $(@D); ln -s `echo $(@D) | sed 's_[^/]*\(/\|$$\)_../_g'`/$< $@
47 build/cc/%.cc:     src/%.c    ; @echo linking $@; mkdir -p $(@D); ln -s `echo $(@D) | sed 's_[^/]*\(/\|$$\)_../_g'`/$< $@
48 build/c/jpeg/%.c:     upstream/jpeg-6b/src/%.c
49         @echo linking $@; mkdir -p $(@D); ln -s `echo $(@D) | sed 's_[^/]*\(/\|$$\)_../_g'`/$< $@
50 build/c/freetype/%.c: upstream/freetype-2.1.4/src/base/%.c
51         @echo linking $@; mkdir -p $(@D); ln -s `echo $(@D) | sed 's_[^/]*\(/\|$$\)_../_g'`/$< $@
52 build/c/freetype/%.c: upstream/freetype-2.1.4/src/%/%.c
53         @echo linking $@; mkdir -p $(@D); ln -s `echo $(@D) | sed 's_[^/]*\(/\|$$\)_../_g'`/$< $@
54
55 build/java/%.java: src/%.java.pp
56         @make -s build/class/org/xwt/util/Preprocessor.class
57         @echo -e "\n\033[1mpreprocessing   .java.pp -> .java:  $<\033[0m"
58         mkdir -p `dirname $@`
59         rm -f $@
60         java -cp build/class org.xwt.util.Preprocessor < $< > $@
61
62 build/class/%.class: build/java/%.java .jikes
63         @echo -e "\n\033[1mcompiling          .java -> .class: $<\033[0m"
64         mkdir -p build/class
65         @./.jikes $<
66
67 compile: .compile
68 .compile: $(java_sources)
69         @echo -e "\n\033[1mcompiling          .java -> .class: src/**/*.java\033[0m"
70         mkdir -p build/class
71         @./.jikes $(java_sources)
72         touch .compile
73
74 # PHASE 4: gcj-generated headers
75 java_headers          := $(java_sources:build/java/%.java=build/h/%.h)
76 build/h/%.h: build/class/%.class .compile
77         @echo -e "\n\033[1mextracting        .class -> .h:     $<\033[0m"
78         mkdir -p `dirname $@`
79         ls `echo $< | sed s/.class\$$//`*.class |\
80                  sed s_build/class/__ | sed s/.class\$$//g | sed s_/_._g | (cd build/class; xargs ../../upstream/install/bin/gcjh -d ../h --classpath .)
81
82 # PHASE 4: object files
83 build/$(platform)/%.java.o: build/java/%.java
84         @echo -e "\n\033[1mcompiling          .java -> .o:     $<\033[0m"
85         mkdir -p `dirname $@`
86         $(gcj) -c $< -o $@
87
88 build/$(platform)/org/xwt/plat/$(platform).cc.o: src/org/xwt/plat/*.cc $(java_headers)
89         @echo -e "\n\033[1mcompiling            .cc -> .o:     $<\033[0m"
90         mkdir -p `dirname $@`
91         $(g++) -I/usr/X11R6/include/ -Iupstream/install/include -Ibuild/h -Iupstream/$(platform)/include -Wno-multichar -c $< -o $@
92
93 build/$(platform)/jpeg-6b/%.c.o: upstream/jpeg-6b/src/%.c
94         @echo -e "\n\033[1mcompiling             .c -> .o:     $<\033[0m"
95         mkdir -p `dirname $@`
96         $(gcc) -Ibuild/h -c $< -o $@
97
98 # PHASE 5: linking
99 $(target_bin).ar: $(java_object_files) build/$(platform)/org/xwt/plat/$(platform).cc.o $(jpeg_object_files)
100         @echo -e "\n\033[1marchiving             .o -> $(target_bin).ar\033[0m"
101         rm -f $(target_bin).ar
102         $(ar) -c $(target_bin).ar $^
103
104 $(target_bin): $(target_bin).ar
105         @echo -e "\n\033[1mlinking               .o -> $(target_bin)\033[0m"
106         mkdir -p build/$(platform)
107         $(gcj) --main=org.xwt.Main -o build/$(platform)/$(target_bin) $(target_bin).ar -Lupstream/install/lib $(link_flags) 
108
109
110 ##############################################################################
111 # Special treatment:
112 #
113
114 build/java/org/xwt/Builtin.java: $(shell ls src/org/xwt/builtin/*.png src/org/xwt/builtin/*.xwt src/org/xwt/builtin/*.xwf)
115         @mkdir -p `dirname $@` build build/java build/class build/h build
116         echo -e "\n\033[1mzipping/uuencoding  .xwt -> .java:  build/java/org/xwt/Builtin.java\033[0m"
117         echo "package org.xwt;"                  >  build/java/org/xwt/Builtin.java
118         echo "class Builtin {"                   >> build/java/org/xwt/Builtin.java
119         echo "public static String encoded = "   >> build/java/org/xwt/Builtin.java
120         cd src; $(jar) cf - $(<:src/%=%) | \
121                 uuencode foo | tail -n +2 | grep -v '^end$$' | grep -v '^`$$' | \
122                 sed 's_\(.+\)_"\1" +_' >> ../build/java/org/xwt/Builtin.java
123         echo "\"\"; }"                           >> build/java/org/xwt/Builtin.java
124
125
126 # compile is here to force compilation of the .class files (they get used via -Ibuild) without
127 # having the individual .o's depend on the .java's (otherwise every .o gets recompiled when one .java changes)
128 gcj: install_gcc-3.3 compile $(target_bin)
129 build/JVM/xwt.jar: .compile
130         @echo -e "\n\033[1marchiving         .class -> .jar:   build/JVM/xwt.jar\033[0m"
131         mkdir -p build/JVM
132         echo -e "Manifest-Version: 1.0\nMain-Class: org.xwt.Main\n" > build/JVM/.manifest
133         cd build/class; $(jar) cfm ../JVM/xwt.jar ../JVM/.manifest `find . -name \*.class`;
134
135
136
137 ##############################################################################
138 # Freetype
139 #
140
141 build/mips/%.c.o: build/c/freetype/%.c install_freetype-2.1.4
142         make -s install_gcc-3.3 target=mips
143         mkdir -p build/mips
144         echo -e "\n\033[1mcompiling $< -> $@ (mips)\033[0m"
145         upstream/install/bin/mips-gcc -march=mips1 -I upstream/freetype-2.1.4/include -c -o $@ $<
146
147 build/mips/freetype.mips: $(freetype_sources:%.c=build/mips/%.c.o)
148         make -s install_newlib-1.11.0 target=mips
149         @echo -e "\n\033[1mcompiling             .c -> .mips:  $@\033[0m"
150         mkdir -p build/mips
151         upstream/install/bin/mips-gcc \
152                 -nostdlib \
153                 --static \
154                 -march=mips1 \
155                 -T src/org/xwt/imp/linker.ld \
156                 -Lbuild/mips \
157                 -Lupstream/freetype-2.1.4/objs \
158                 -o $@ \
159                 build/mips/Freetype.o \
160                 -lfreetype
161
162 build/java/org/xwt/imp/Freetype.java: build/mips/freetype.mips build/class/org/xwt/imp/MIPS.class
163         @echo -e "\n\033[1mtranslating        .mips -> .java:  $@\033[0m"
164         mkdir -p build/java/org/xwt/imp/
165         rm -f $@
166         java -cp build/class org.xwt.imp.MIPS org.xwt.imp.Freetype build/mips/freetype.mips > build/java/org/xwt/imp/Freetype.java
167
168
169
170 ##############################################################################
171 # Maintainer stuff: generating numbered builds, proposing patches
172 #
173
174 update-build:
175         cvs tag -F xwt-$(current_build)
176         (echo -n 0000; (echo "10k16o16i"; cat next.build | tr a-z A-Z; echo "1+f") | dc) | tail --bytes=5 > next.build-
177         mv next.build- next.build
178         echo -n "Next build will be "
179         cat next.build
180         cvs update CHANGES
181         echo "" >> CHANGES
182         echo `date +%d-%b`" =========== build $(current_build) ================================================" >> CHANGES
183         echo committing...
184         cvs commit -m 'this comment should not appear in CHANGES' next.build CHANGES
185         echo committed.
186
187 propose-patch:
188         @echo -n "Please type a one-line description of this bug: "; \
189         read A; \
190         echo; \
191         echo "Please type any additional comments that explain this patch."; \
192         echo "If this patch fixes a bug, include a link to bugs.xwt.org."; \
193         echo "When you are done, press control-d on a new line."; \
194         echo; \
195         (       echo -e "HELO patcher"; \
196                 echo -e "MAIL FROM:$(USER)@xwt.org"; \
197                 echo -e "RCPT TO: patches@xwt.org"; \
198                 echo -e "DATA"; \
199                 echo -e "From: $(USER)@xwt.org"; \
200                 echo -e "To: patches@xwt.org"; \
201                 echo -e "Subject: proposed patch to $(this_branch): $$A"; \
202                 echo -e ""; \
203                 cat; \
204                 echo; \
205                 cvs diff -Bud; \
206                 echo .; \
207         ) > .message
208         bash -c "cat .message > /dev/tcp/mail.xwt.org/25"     # /dev/tcp is faked by bash; not part of the os
209
210 current_build         := $(shell cat next.build)
211 this_branch           := $(shell tail -c +2 CVS/Tag 2>/dev/null || echo HEAD)
212 this_branch_flag      := $(shell test $(this_branch) = HEAD && echo || echo -r $(this_branch))
213
214 # pre-depend on compile as a sanity check
215 dist: compile
216         # this will fail if we haven't checked-in since the comment is null; we want this.
217         cvs commit -m '' > /dev/null
218         cvs tag -F xwt-$(current_build)
219
220         echo "***********************************************************"
221         echo "*  This build is $(current_build)"
222         echo "***********************************************************"
223
224         ifeq ($(shell uname -n),serverbeach.megacz.com)
225                 (make $(silent) dist-private 2>&1) >> .make-dist.out || \
226                         (tail -n 200 .make-dist.out | mail -s "Build $(current_build) FAILED" cvs@xwt.org; false)
227                 tail -n 200 .make-dist.out | \
228                         mail -s "Unsigned binaries of $(current_build) are now available" cvs@xwt.org
229         else
230                 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"
231         endif
232
233 dist-private:
234         make $(silent) update-build
235
236         # preserve gcc across builds so we don't have to remake it
237         mkdir -p $(HOME)/dist.xwt.org-gcc
238         mv gcc gcc-
239         ln -s $(HOME)/dist.xwt.org-gcc gcc
240         mv -f gcc-/Makefile gcc/
241         mv -f gcc-/*.patch gcc/
242
243         # build it
244         nice -n 19 make all
245
246         echo
247         echo === master.dist.xwt.org ==================================
248
249         echo "copying xwt.jar to distribution area..."
250         cp xwt.jar /var/www/master.dist.xwt.org/xwt-$(current_build).jar.unsigned
251
252         echo "stripping xwt.exe and copying it to the distribution area..."
253         $(strip) build/Win32/xwt.exe -o /var/www/master.dist.xwt.org/xwt-$(current_build).exe.unsigned
254
255         echo "copying xwt.linux to distribution area..."
256         $(strip) build/Linux/xwt.linux -o /var/www/master.dist.xwt.org/xwt-$(current_build).linux.unsigned
257
258         echo "creating source tarball in distribution area..."
259         CVSROOT=/cvs cvs export -r xwt-$(current_build) xwt
260         mv xwt xwt-$(current_build)
261         tar cvzf /var/www/master.dist.xwt.org/xwt-$(current_build).tgz xwt-$(current_build)
262
263         echo
264         echo "*** DONE ******************************************"
265
266
267
268
269
270
271
272 #mips: $(prefix)/mips/lib/libm.a
273 #$(prefix)/mips/lib/libm.a: src/.newlib $(prefix)/bin/mips-gcc
274 #       mkdir -p build/$(target)/newlib
275 #       cd build/$(target)/newlib; PATH=$(prefix)/bin:$$PATH \
276 #               ../../../src/newlib-1.11.0/configure --nfp --enable-multilib --prefix=$(prefix) --target=mips
277 #       cd build/$(target)/newlib; PATH=$(prefix)/bin:$$PATH EXTRA_CFLAGS=-mstrict-align make
278 #       cd build/$(target)/newlib; make install
279 # FIXME: this is probably going to cause problems... figure out how to get by without it
280 #       touch .empty.c
281 #       $(prefix)/bin/mips-gcc -c .empty.c -o $(prefix)/mips/lib/crt0.o