X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Makefile;h=fc8ade5c02423c8c53811621e5bec1da31d321ee;hb=34320422e5a079bbc2acb14ff389b603f437ed10;hp=fad8f658606f157c3de1c2f315530e38b0de07d3;hpb=eebdeb5d031d072451eceaa54b43c07373199cff;p=org.ibex.core.git diff --git a/Makefile b/Makefile index fad8f65..fc8ade5 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,12 @@ xwar_sources := $(shell ls src/org/xwt/builtin/*.png src/org/xwt/built cc_sources := src/org/xwt/plat/$(platform).cc c_sources := $(jpeg_c_sources:%.c=src/org/ijg/%.c) +# freetype inputs +freetype_base_sources := ftsystem.c ftmm.c ftbbox.c ftinit.c ftdebug.c ftbase.c ftglyph.c +freetype_other_sources := smooth/smooth.c autohint/autohint.c sfnt/sfnt.c truetype/truetype.c +freetype_sources := $(freetype_base_sources:%=gcc/src/freetype-2.1.4/src/base/%) +freetype_sources += $(freetype_other_sources:%=gcc/src/freetype-2.1.4/src/%) + # outputs java_objects := $(filter-out bin-$(platform)/org/xwt/plat/%, $(java_sources:src/%.java=bin-$(platform)/%.java.o)) java_objects += bin-$(platform)/org/xwt/plat/GCJ.java.o @@ -63,23 +69,23 @@ compile: .javac .bootclasspath bin/org/xwt/builtin.xwar grep -v ^\\[read | sed s_^\\[write\ bin/__ | sed s_.class\\]_.java_ | sed "s_^_compiling .java -> .class: src/_" # platforms -all: Win32 Linux Java2 +all: Win32 Linux Java2 #Solaris .javac: - if \ - type jikes && (jikes --version | grep "Version 1.18"); \ - then \ - echo "public class GetBootClassPath { public static void main(String[] s) { " > GetBootClassPath.java; \ - echo "System.out.println(System.getProperty(\"sun.boot.class.path\")); } }" >> GetBootClassPath.java; \ - javac GetBootClassPath.java; \ - java -cp . GetBootClassPath > .bootclasspath; \ - rm GetBootClassPath.*; \ - echo -n "jikes -nowarn -sourcepath src/ -bootclasspath " > .javac; \ - cat .bootclasspath >> .javac; \ - else \ - echo "WARNING: You do not have jikes; falling back to javac. Compiles will be very slow."; \ - echo javac > .javac; \ - fi \ + @if \ + @ type jikes && (jikes --version | grep "Version 1.18"); \ + @then \ + @ echo "public class GetBootClassPath { public static void main(String[] s) { " > GetBootClassPath.java; \ + @ echo "System.out.println(System.getProperty(\"sun.boot.class.path\")); } }" >> GetBootClassPath.java; \ + @ javac GetBootClassPath.java; \ + @ java -cp . GetBootClassPath > .bootclasspath; \ + @ rm GetBootClassPath.*; \ + @ echo -n "jikes -nowarn -sourcepath src/ -bootclasspath " > .javac; \ + @ cat .bootclasspath >> .javac; \ + @else \ + @ echo "WARNING: You do not have jikes; falling back to javac. Compiles will be very slow."; \ + @ echo javac > .javac; \ + @fi jikes: curl ftp://www-126.ibm.com/pub/jikes/1.18/jikes-1.18.tar.bz2 | tar xjvf - @@ -134,9 +140,28 @@ propose-patch: ## GCJ-Derived Platforms ####################################################################### # if the user doesn't change gcc_path, and it's not built, then we'll try to build it -$(shell pwd)/gcc/install/bin/$(target)-gcj: +$(shell pwd)/gcc/install/bin/$(target)-gcj: .upstream make -C gcc +gcc/src/.freetype: + mkdir -p gcc/src + curl http://umn.dl.sourceforge.net/sourceforge/freetype/freetype-2.1.4.tar.gz | tar xvzf - -C gcc/src + cd gcc/src; patch -p0 < freetype.patch + touch gcc/src/.freetype + +freetype.mips: gcc/src/.freetype + make -C gcc mips target=mips + $(gcc_path)/bin/mips-gcc \ + --static \ + -march=r3000 \ + -o freetype.mips \ + -I gcc/src/freetype-2.1.4/include \ + $(freetype_sources) \ + -Wl,--warn-once \ + src/org/xwt/imp/Freetype.c \ + $(gcc_path)/mips/lib/libc.a \ + -Wl,-T,$(gcc_path)/mips/lib/nullmon.ld + # compile is here to force compilation of the .class files (they get used via -Ibin/) without # having the individual .o's depend on the .java's (otherwise every .o gets recompiled when one .java changes) gcj: $(gcc_path)/bin/$(target)-gcj compile $(target_bin) @@ -184,30 +209,10 @@ $(c_objects): bin-$(platform)/%.c.o: src/%.c src/org/ijg/jmorecfg.h @mkdir -p `dirname $@` $(gcc) -Ibin -c $< -o $@ -upstream: - curl http://www.megacz.com/upstream.tgz | tar xvzf - - -upstream/Carbon/include/Carbon: upstream - # A disgusting hack to create symlinks to the OS X Framework headers, since the - # standard GCC doesn't know how to search Frameworks for header files. - outdir="upstream/Carbon/include"; \ - mkdir -p $$outdir; \ - librarydir="/System/Library"; \ - frameworksubdir="Frameworks"; \ - cd $$outdir; \ - function CreateHeaderDirectories() \ - { \ - for framework in `ls -d $$1/*.framework`; do \ - name=`echo $$framework | sed 's/.*\/\([^/]*\)\.framework/\1/'`; \ - if [[ $$name != "" && ! -e $$name && -e $$framework/Headers ]]; then \ - ln -s $$framework/Headers $$name; \ - if [[ -e $$framework/$$frameworksubdir ]]; then \ - CreateHeaderDirectories $$framework/$$frameworksubdir; \ - fi; \ - fi; \ - done; \ - }; \ - CreateHeaderDirectories $$librarydir/$$frameworksubdir; +.upstream: + mkdir -p gcc/install; curl http://www.megacz.com/upstream.tgz | tar xvzhf - -C gcc/install + touch .upstream + ## Platforms ############################################################################## @@ -220,14 +225,13 @@ Linux: platform_link="-L$(gcc_path)/lib -L/usr/X11R6/lib -lX11 -lXext --static" \ platform_java_sources="POSIX X11" -Solaris: upstream +Solaris: echo -e "\\n=== Solaris =========================================" - tar xvzf upstream/Solaris/solaris-libs.tgz make gcj \ platform=Solaris \ target=sparc-sun-solaris2.7 \ target_bin=xwt.solaris \ - platform_link="-L$(gcc_path)/lib -L/usr/X11R6/lib -lX11 -lXext" \ + platform_link="-L$(gcc_path)/lib -lX11 -lXext" \ platform_java_sources="POSIX X11" Win32: @@ -236,10 +240,10 @@ Win32: platform=Win32 \ target=i686-pc-mingw32 \ target_bin=xwt.exe \ - platform_link="-Wl,--subsystem,console -lcomdlg32" \ + platform_link="-Wl,--subsystem,windows -lcomdlg32" \ platform_java_sources="Win32" -Darwin: upstream +Darwin: echo -e "\\n=== Darwin =========================================" ranlib upstream/Darwin/lib/*.a ar x /usr/lib/libcc_dynamic.a upstream/Darwin/lib/darwin-fpsave.o @@ -250,7 +254,7 @@ Darwin: upstream platform_link="upstream/Darwin/lib/*.[oa] $(gcc_path)/lib/libgcj.a" \ platform_java_sources="POSIX X11" -Carbon: upstream/Carbon/include/Carbon upstream +Carbon: echo -e "\\n=== Carbon =========================================" make gcj \ platform=Carbon \