aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/extras/freetype2/builds/mac
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2011-10-10 17:43:39 +0200
committerReinhard Tartler <siretart@tauware.de>2011-10-10 17:43:39 +0200
commitf4092abdf94af6a99aff944d6264bc1284e8bdd4 (patch)
tree2ac1c9cc16ceb93edb2c4382c088dac5aeafdf0f /nx-X11/extras/freetype2/builds/mac
parenta840692edc9c6d19cd7c057f68e39c7d95eb767d (diff)
downloadnx-libs-f4092abdf94af6a99aff944d6264bc1284e8bdd4.tar.gz
nx-libs-f4092abdf94af6a99aff944d6264bc1284e8bdd4.tar.bz2
nx-libs-f4092abdf94af6a99aff944d6264bc1284e8bdd4.zip
Imported nx-X11-3.1.0-1.tar.gznx-X11/3.1.0-1
Summary: Imported nx-X11-3.1.0-1.tar.gz Keywords: Imported nx-X11-3.1.0-1.tar.gz into Git repository
Diffstat (limited to 'nx-X11/extras/freetype2/builds/mac')
-rw-r--r--nx-X11/extras/freetype2/builds/mac/README14
-rw-r--r--nx-X11/extras/freetype2/builds/mac/freetype.make109
-rw-r--r--nx-X11/extras/freetype2/builds/mac/ftlib.prjbin0 -> 59597 bytes
3 files changed, 123 insertions, 0 deletions
diff --git a/nx-X11/extras/freetype2/builds/mac/README b/nx-X11/extras/freetype2/builds/mac/README
new file mode 100644
index 000000000..f933c56cc
--- /dev/null
+++ b/nx-X11/extras/freetype2/builds/mac/README
@@ -0,0 +1,14 @@
+This folder contains
+
+ . a Makefile for Apple MPW build environment (currently PPC only)
+
+ . supporting code and CodeWarrior Pro 7 project files to build the
+ FreeType library.
+
+Notes:
+The library will be built as a static lib in the obj/ folder.
+
+Current maintainer: Leonard Rosenthol, <leonardr@lazerware.com>
+Originally prepared by Just van Rossum, <just@letterror.com>
+
+This directory is now actively maintained as part of the FreeType Project.
diff --git a/nx-X11/extras/freetype2/builds/mac/freetype.make b/nx-X11/extras/freetype2/builds/mac/freetype.make
new file mode 100644
index 000000000..085c2600f
--- /dev/null
+++ b/nx-X11/extras/freetype2/builds/mac/freetype.make
@@ -0,0 +1,109 @@
+# Makefile for Apple MPW build environment (currently PPC only)
+
+MAKEFILE = Makefile
+˙MondoBuild˙ = #{MAKEFILE} # Make blank to avoid rebuilds when makefile is modified
+Sym˙PPC = #-sym on
+ObjDir˙PPC = :obj:
+
+CFLAGS = -i :include -i :src -includes unix {Sym˙PPC}
+
+OBJS = ˙
+ "{ObjDir˙PPC}ftsystem.c.x" ˙
+ "{ObjDir˙PPC}ftdebug.c.x" ˙
+ "{ObjDir˙PPC}ftinit.c.x" ˙
+ "{ObjDir˙PPC}ftbase.c.x" ˙
+ "{ObjDir˙PPC}ftglyph.c.x" ˙
+ "{ObjDir˙PPC}ftmm.c.x" ˙
+ "{ObjDir˙PPC}ftbbox.c.x" ˙
+ "{ObjDir˙PPC}autohint.c.x" ˙
+ "{ObjDir˙PPC}ftcache.c.x" ˙
+ "{ObjDir˙PPC}cff.c.x" ˙
+ "{ObjDir˙PPC}type1cid.c.x" ˙
+ "{ObjDir˙PPC}pcf.c.x" ˙
+ "{ObjDir˙PPC}psaux.c.x" ˙
+ "{ObjDir˙PPC}psmodule.c.x" ˙
+ "{ObjDir˙PPC}raster.c.x" ˙
+ "{ObjDir˙PPC}sfnt.c.x" ˙
+ "{ObjDir˙PPC}smooth.c.x" ˙
+ "{ObjDir˙PPC}truetype.c.x" ˙
+ "{ObjDir˙PPC}type1.c.x" ˙
+ "{ObjDir˙PPC}winfnt.c.x" ˙
+ "{ObjDir˙PPC}ftmac.c.x" ˙
+
+# Main target - build a library
+freetype ˙˙ {˙MondoBuild˙} directories freetype.o
+
+# This is used to build the library
+freetype.o ˙˙ {˙MondoBuild˙} {OBJS}
+ PPCLink ˙
+ -o :lib:{Targ} {Sym˙PPC} ˙
+ {OBJS} -c '????' -xm l
+
+# This is used to create the directories needed for build
+directories ˙
+ if !`Exists obj` ; NewFolder obj ; end
+ if !`Exists lib` ; NewFolder lib ; end
+
+
+"{ObjDir˙PPC}ftsystem.c.x" ˙ {˙MondoBuild˙} ":src:base:ftsystem.c"
+ {PPCC} ":src:base:ftsystem.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}ftdebug.c.x" ˙ {˙MondoBuild˙} ":src:base:ftdebug.c"
+ {PPCC} ":src:base:ftdebug.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}ftinit.c.x" ˙ {˙MondoBuild˙} ":src:base:ftinit.c"
+ {PPCC} ":src:base:ftinit.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}ftbase.c.x" ˙ {˙MondoBuild˙} ":src:base:ftbase.c"
+ {PPCC} ":src:base:ftbase.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}ftglyph.c.x" ˙ {˙MondoBuild˙} ":src:base:ftglyph.c"
+ {PPCC} ":src:base:ftglyph.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}ftmm.c.x" ˙ {˙MondoBuild˙} ":src:base:ftmm.c"
+ {PPCC} ":src:base:ftmm.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}ftbbox.c.x" ˙ {˙MondoBuild˙} ":src:base:ftbbox.c"
+ {PPCC} ":src:base:ftbbox.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}autohint.c.x" ˙ {˙MondoBuild˙} ":src:autohint:autohint.c"
+ {PPCC} ":src:autohint:autohint.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}ftcache.c.x" ˙ {˙MondoBuild˙} ":src:cache:ftcache.c"
+ {PPCC} ":src:cache:ftcache.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}cff.c.x" ˙ {˙MondoBuild˙} ":src:cff:cff.c"
+ {PPCC} ":src:cff:cff.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}type1cid.c.x" ˙ {˙MondoBuild˙} ":src:cid:type1cid.c"
+ {PPCC} ":src:cid:type1cid.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}pcf.c.x" ˙ {˙MondoBuild˙} ":src:pcf:pcf.c"
+ {PPCC} ":src:pcf:pcf.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}psaux.c.x" ˙ {˙MondoBuild˙} ":src:psaux:psaux.c"
+ {PPCC} ":src:psaux:psaux.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}psmodule.c.x" ˙ {˙MondoBuild˙} ":src:psnames:psmodule.c"
+ {PPCC} ":src:psnames:psmodule.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}raster.c.x" ˙ {˙MondoBuild˙} ":src:raster:raster.c"
+ {PPCC} ":src:raster:raster.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}sfnt.c.x" ˙ {˙MondoBuild˙} ":src:sfnt:sfnt.c"
+ {PPCC} ":src:sfnt:sfnt.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}smooth.c.x" ˙ {˙MondoBuild˙} ":src:smooth:smooth.c"
+ {PPCC} ":src:smooth:smooth.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}truetype.c.x" ˙ {˙MondoBuild˙} ":src:truetype:truetype.c"
+ {PPCC} ":src:truetype:truetype.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}type1.c.x" ˙ {˙MondoBuild˙} ":src:type1:type1.c"
+ {PPCC} ":src:type1:type1.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}winfnt.c.x" ˙ {˙MondoBuild˙} ":src:winfonts:winfnt.c"
+ {PPCC} ":src:winfonts:winfnt.c" -o {Targ} {CFLAGS}
+
+"{ObjDir˙PPC}ftmac.c.x" ˙ {˙MondoBuild˙} ":src:base:ftmac.c"
+ {PPCC} ":src:base:ftmac.c" -o {Targ} {CFLAGS} \ No newline at end of file
diff --git a/nx-X11/extras/freetype2/builds/mac/ftlib.prj b/nx-X11/extras/freetype2/builds/mac/ftlib.prj
new file mode 100644
index 000000000..df8bd2b91
--- /dev/null
+++ b/nx-X11/extras/freetype2/builds/mac/ftlib.prj
Binary files differ