2001-12-22 21:32:20 +01:00
|
|
|
|
#
|
|
|
|
|
# Makefile for FreeType2 link library using ppc-morphos-gcc-2.95.3-bin.tgz
|
|
|
|
|
# (gcc 2.95.3 hosted on 68k-Amiga producing MorphOS-PPC-binaries from
|
|
|
|
|
# http://www.morphos.de)
|
2005-06-08 13:56:55 +02:00
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
2017-01-04 20:16:34 +01:00
|
|
|
|
# Copyright 2005-2017 by
|
2005-06-08 13:56:55 +02:00
|
|
|
|
# Werner Lemberg and Detlef W<>rkner.
|
|
|
|
|
#
|
|
|
|
|
# This file is part of the FreeType project, and may only be used, modified,
|
|
|
|
|
# and distributed under the terms of the FreeType project license,
|
|
|
|
|
# LICENSE.TXT. By continuing to use, modify, or distribute this file you
|
|
|
|
|
# indicate that you have read the license and understand and accept it
|
|
|
|
|
# fully.
|
|
|
|
|
|
|
|
|
|
|
2001-12-22 21:32:20 +01:00
|
|
|
|
#
|
|
|
|
|
# to build from the builds/amiga directory call
|
|
|
|
|
#
|
|
|
|
|
# make assign
|
|
|
|
|
# make
|
|
|
|
|
#
|
|
|
|
|
# Your programs source code should start with this
|
|
|
|
|
# (uncomment the parts you do not need to keep the program small):
|
|
|
|
|
# ---8<---
|
2005-03-25 23:18:01 +01:00
|
|
|
|
#define FT_USE_AUTOFIT // autofitter
|
|
|
|
|
#define FT_USE_RASTER // monochrome rasterizer
|
|
|
|
|
#define FT_USE_SMOOTH // anti-aliasing rasterizer
|
|
|
|
|
#define FT_USE_TT // truetype font driver
|
|
|
|
|
#define FT_USE_T1 // type1 font driver
|
|
|
|
|
#define FT_USE_T42 // type42 font driver
|
|
|
|
|
#define FT_USE_T1CID // cid-keyed type1 font driver
|
|
|
|
|
#define FT_USE_CFF // opentype font driver
|
|
|
|
|
#define FT_USE_BDF // bdf bitmap font driver
|
|
|
|
|
#define FT_USE_PCF // pcf bitmap font driver
|
|
|
|
|
#define FT_USE_PFR // pfr font driver
|
|
|
|
|
#define FT_USE_WINFNT // windows .fnt|.fon bitmap font driver
|
|
|
|
|
#define FT_USE_OTV // opentype validator
|
2005-11-17 15:19:30 +01:00
|
|
|
|
#define FT_USE_GXV // truetype gx validator
|
2001-12-22 21:32:20 +01:00
|
|
|
|
#include "FT:src/base/ftinit.c"
|
|
|
|
|
# ---8<---
|
|
|
|
|
#
|
|
|
|
|
# link your programs with libft2_ppc.a and either ftsystem.ppc.o or ftsystempure.ppc.o
|
|
|
|
|
# (and either ftdebug.ppc.o or ftdebugpure.ppc.o if you enabled FT_DEBUG_LEVEL_ERROR or
|
Another adjustment to header locations.
This change is a result of a discussion thread on freetype-devel
http://lists.nongnu.org/archive/html/freetype-devel/2015-06/msg00041.html
Re-introduce the `freetype2' subdirectory for all FreeType header
files after installation, and rename the `freetype2' subdirectory in
the git repository to `freetype'.
* include/freetype2: Renamed to...
* include/freetype: This.
* CMakeLists.txt (PUBLIC_HEADERS, PUBLIC_CONFIG_HEADERS,
PRIVATE_HEADERS): Updated.
Update creation of `ftconfig.h'.
Install generated `ftconfig.h'.
* Jamfile (HDRMACRO, RefDoc), autogen.sh: Updated.
* builds/amiga/include/config/ftconfig.h, builds/freetype.mk
(PUBLIC_DIR), builds/symbian/bld.inf, builds/toplevel.mk (work),
builds/unix/freetype2.in: Updated.
* builds/unix/freetype-config.in: Updated.
* builds/unix/configure.raw: Don't check for `rmdir'.
* builds/unix/unix-def.in (DELDIR): Use `rm -rf', which is portable
according to the autoconf info manual.
* builds/unix/install.mk (install, uninstall,
distclean_project_unix): Update and simplify.
* builds/wince/*, builds/windows/*: Updated.
* devel/ft2build.h, include/ft2build.h: Updated.
* include/freetype2/config/ftheader.h,
include/freetype2/internal/ftserv.h,
include/freetype2/internal/internal.h: Update all header file
macros.
* src/tools/chktrcmp.py (TRACE_DEF_FILES): Updated.
* docs/*: Updated.
2015-06-25 13:04:57 +02:00
|
|
|
|
# FT_DEBUG_LEVEL_TRACE in include/freetype/config/ftoption.h).
|
2001-12-22 21:32:20 +01:00
|
|
|
|
|
|
|
|
|
all: libft2_ppc.a ftsystem.ppc.o ftsystempure.ppc.o
|
|
|
|
|
|
|
|
|
|
assign:
|
|
|
|
|
assign FT: //
|
|
|
|
|
|
|
|
|
|
FTSRC = /FT/src
|
|
|
|
|
|
|
|
|
|
CC = ppc-morphos-gcc
|
|
|
|
|
AR = ppc-morphos-ar rc
|
|
|
|
|
RANLIB = ppc-morphos-ranlib
|
|
|
|
|
LD = ppc-morphos-ld
|
2006-04-05 09:17:12 +02:00
|
|
|
|
CFLAGS = -DFT2_BUILD_LIBRARY -O2 -I/emu/emulinclude/includegcc -I/emu/include -Iinclude -I$(FTSRC) -I/FT/include
|
2001-12-22 21:32:20 +01:00
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# FreeType2 library base
|
|
|
|
|
#
|
|
|
|
|
ftbase.ppc.o: $(FTSRC)/base/ftbase.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
ftinit.ppc.o: $(FTSRC)/base/ftinit.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
ftsystem.ppc.o: $(FTSRC)/base/ftsystem.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
# pure version for use in run-time library etc
|
|
|
|
|
ftsystempure.ppc.o: src/base/ftsystem.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
ftdebug.ppc.o: $(FTSRC)/base/ftdebug.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
# pure version for use in run-time library etc
|
|
|
|
|
ftdebugpure.ppc.o: src/base/ftdebug.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# FreeType2 library base extensions
|
|
|
|
|
#
|
2005-03-25 23:18:01 +01:00
|
|
|
|
ftbbox.ppc.o: $(FTSRC)/base/ftbbox.c
|
2001-12-22 21:32:20 +01:00
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2005-03-25 23:18:01 +01:00
|
|
|
|
ftbdf.ppc.o: $(FTSRC)/base/ftbdf.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2005-03-26 11:18:38 +01:00
|
|
|
|
ftbitmap.ppc.o: $(FTSRC)/base/ftbitmap.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2009-01-22 11:13:59 +01:00
|
|
|
|
ftcid.ppc.o: $(FTSRC)/base/ftcid.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
Rename `ftxf86.[ch]' to `ftfntfmt.[ch]'.
CMakeLists.txt, builds/amiga/makefile, builds/amiga/makefile.os4,
builds/amiga/smakefile, builds/mac/FreeType.m68k_cfm.make.txt,
builds/mac/FreeType.m68k_far.make.txt,
builds/mac/FreeType.ppc_carbon.make.txt,
builds/mac/FreeType.ppc_classic.make.txt, builds/symbian/bld.inf,
builds/symbian/freetype.mmp, builds/wince/vc2005-ce/freetype.vcproj,
builds/wince/vc2008-ce/freetype.vcproj,
builds/windows/vc2005/freetype.vcproj,
builds/windows/vc2008/freetype.vcproj,
builds/windows/vc2010/freetype.vcxproj,
builds/windows/vc2010/freetype.vcxproj.filters,
builds/windows/visualc/freetype.dsp,
builds/windows/visualc/freetype.vcproj,
builds/windows/visualce/freetype.dsp,
builds/windows/visualce/freetype.vcproj, docs/INSTALL.ANY,
include/config/ftheader.h, include/ftfntfmt.h, modules.cfg,
src/base/ftfntfmt.c, vms_make.com: Updated.
2015-03-11 06:30:23 +01:00
|
|
|
|
ftfntfmt.ppc.o: $(FTSRC)/base/ftfntfmt.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2009-01-22 11:13:59 +01:00
|
|
|
|
ftfstype.ppc.o: $(FTSRC)/base/ftfstype.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2007-01-15 08:48:09 +01:00
|
|
|
|
ftgasp.ppc.o: $(FTSRC)/base/ftgasp.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2005-03-25 23:18:01 +01:00
|
|
|
|
ftglyph.ppc.o: $(FTSRC)/base/ftglyph.c
|
2001-12-22 21:32:20 +01:00
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2005-11-17 15:19:30 +01:00
|
|
|
|
ftgxval.ppc.o: $(FTSRC)/base/ftgxval.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2007-01-15 08:48:09 +01:00
|
|
|
|
ftlcdfil.ppc.o: $(FTSRC)/base/ftlcdfil.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2001-12-22 21:32:20 +01:00
|
|
|
|
ftmm.ppc.o: $(FTSRC)/base/ftmm.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2005-03-26 11:18:38 +01:00
|
|
|
|
ftotval.ppc.o: $(FTSRC)/base/ftotval.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2009-01-22 11:13:59 +01:00
|
|
|
|
ftpatent.ppc.o: $(FTSRC)/base/ftpatent.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2005-03-26 11:18:38 +01:00
|
|
|
|
ftpfr.ppc.o: $(FTSRC)/base/ftpfr.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
ftstroke.ppc.o: $(FTSRC)/base/ftstroke.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2001-12-22 21:32:20 +01:00
|
|
|
|
ftsynth.ppc.o: $(FTSRC)/base/ftsynth.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2005-03-25 23:18:01 +01:00
|
|
|
|
fttype1.ppc.o: $(FTSRC)/base/fttype1.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
ftwinfnt.ppc.o: $(FTSRC)/base/ftwinfnt.c
|
2001-12-22 21:32:20 +01:00
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
#
|
2005-03-25 23:18:01 +01:00
|
|
|
|
# FreeType2 library autofitting module
|
2001-12-22 21:32:20 +01:00
|
|
|
|
#
|
2005-03-25 23:18:01 +01:00
|
|
|
|
autofit.ppc.o: $(FTSRC)/autofit/autofit.c
|
2001-12-22 21:32:20 +01:00
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# FreeType2 library postscript hinting module
|
|
|
|
|
#
|
|
|
|
|
pshinter.ppc.o: $(FTSRC)/pshinter/pshinter.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# FreeType2 library PS support module
|
|
|
|
|
#
|
|
|
|
|
psaux.ppc.o: $(FTSRC)/psaux/psaux.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# FreeType2 library PS glyph names module
|
|
|
|
|
#
|
|
|
|
|
psnames.ppc.o: $(FTSRC)/psnames/psnames.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# FreeType2 library monochrome raster module
|
|
|
|
|
#
|
|
|
|
|
raster.ppc.o: $(FTSRC)/raster/raster.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# FreeType2 library anti-aliasing raster module
|
|
|
|
|
#
|
|
|
|
|
smooth.ppc.o: $(FTSRC)/smooth/smooth.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# FreeType2 library 'sfnt' module
|
|
|
|
|
#
|
|
|
|
|
sfnt.ppc.o: $(FTSRC)/sfnt/sfnt.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
#
|
2005-03-25 23:18:01 +01:00
|
|
|
|
# FreeType2 library glyph and image caching system
|
2001-12-22 21:32:20 +01:00
|
|
|
|
#
|
|
|
|
|
ftcache.ppc.o: $(FTSRC)/cache/ftcache.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# FreeType2 library OpenType font driver
|
|
|
|
|
#
|
|
|
|
|
cff.ppc.o: $(FTSRC)/cff/cff.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# FreeType2 library TrueType font driver
|
|
|
|
|
#
|
|
|
|
|
truetype.ppc.o: $(FTSRC)/truetype/truetype.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# FreeType2 library Type1 font driver
|
|
|
|
|
#
|
|
|
|
|
type1.ppc.o: $(FTSRC)/type1/type1.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2002-05-29 00:38:05 +02:00
|
|
|
|
#
|
|
|
|
|
# FreeType2 library Type42 font driver
|
|
|
|
|
#
|
2002-06-08 14:33:57 +02:00
|
|
|
|
type42.ppc.o: $(FTSRC)/type42/type42.c
|
2002-05-29 00:38:05 +02:00
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2001-12-22 21:32:20 +01:00
|
|
|
|
#
|
|
|
|
|
# FreeType2 library CID-keyed Type1 font driver
|
|
|
|
|
#
|
|
|
|
|
type1cid.ppc.o: $(FTSRC)/cid/type1cid.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
#
|
2002-05-29 00:38:05 +02:00
|
|
|
|
# FreeType2 library BDF bitmap font driver
|
2001-12-22 21:32:20 +01:00
|
|
|
|
#
|
2002-05-29 00:38:05 +02:00
|
|
|
|
bdf.ppc.o: $(FTSRC)/bdf/bdf.c
|
2001-12-22 21:32:20 +01:00
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# FreeType2 library PCF bitmap font driver
|
|
|
|
|
#
|
|
|
|
|
pcf.ppc.o: $(FTSRC)/pcf/pcf.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2005-03-25 23:18:01 +01:00
|
|
|
|
#
|
|
|
|
|
# FreeType2 library gzip support for compressed PCF bitmap fonts
|
|
|
|
|
#
|
|
|
|
|
gzip.ppc.o: $(FTSRC)/gzip/ftgzip.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2011-01-05 18:44:53 +01:00
|
|
|
|
# FreeType2 library bzip2 support for compressed PCF bitmap fonts
|
|
|
|
|
#
|
|
|
|
|
bzip2.ppc.o: $(FTSRC)/bzip2/ftbzip2.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2005-03-25 23:18:01 +01:00
|
|
|
|
#
|
|
|
|
|
# FreeType2 library compress support for compressed PCF bitmap fonts
|
|
|
|
|
#
|
|
|
|
|
lzw.ppc.o: $(FTSRC)/lzw/ftlzw.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2002-05-29 00:38:05 +02:00
|
|
|
|
#
|
|
|
|
|
# FreeType2 library PFR font driver
|
|
|
|
|
#
|
|
|
|
|
pfr.ppc.o: $(FTSRC)/pfr/pfr.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# FreeType2 library Windows FNT/FON bitmap font driver
|
|
|
|
|
#
|
|
|
|
|
winfnt.ppc.o: $(FTSRC)/winfonts/winfnt.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2005-11-17 15:19:30 +01:00
|
|
|
|
#
|
|
|
|
|
# FreeType2 library TrueTypeGX Validator
|
|
|
|
|
#
|
|
|
|
|
gxvalid.ppc.o: $(FTSRC)/gxvalid/gxvalid.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
2005-03-25 23:18:01 +01:00
|
|
|
|
#
|
|
|
|
|
# FreeType2 library OpenType validator
|
|
|
|
|
#
|
|
|
|
|
otvalid.ppc.o: $(FTSRC)/otvalid/otvalid.c
|
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
Rename `ftxf86.[ch]' to `ftfntfmt.[ch]'.
CMakeLists.txt, builds/amiga/makefile, builds/amiga/makefile.os4,
builds/amiga/smakefile, builds/mac/FreeType.m68k_cfm.make.txt,
builds/mac/FreeType.m68k_far.make.txt,
builds/mac/FreeType.ppc_carbon.make.txt,
builds/mac/FreeType.ppc_classic.make.txt, builds/symbian/bld.inf,
builds/symbian/freetype.mmp, builds/wince/vc2005-ce/freetype.vcproj,
builds/wince/vc2008-ce/freetype.vcproj,
builds/windows/vc2005/freetype.vcproj,
builds/windows/vc2008/freetype.vcproj,
builds/windows/vc2010/freetype.vcxproj,
builds/windows/vc2010/freetype.vcxproj.filters,
builds/windows/visualc/freetype.dsp,
builds/windows/visualc/freetype.vcproj,
builds/windows/visualce/freetype.dsp,
builds/windows/visualce/freetype.vcproj, docs/INSTALL.ANY,
include/config/ftheader.h, include/ftfntfmt.h, modules.cfg,
src/base/ftfntfmt.c, vms_make.com: Updated.
2015-03-11 06:30:23 +01:00
|
|
|
|
BASEPPC = ftbase.ppc.o ftbbox.ppc.o ftbdf.ppc.o ftbitmap.ppc.o ftcid.ppc.o \
|
|
|
|
|
ftfntfmt.ppc.oftfstype.ppc.o ftgasp.ppc.o ftglyph.ppc.o \
|
|
|
|
|
ftgxval.ppc.o ftlcdfil.ppc.o ftmm.ppc.o ftotval.ppc.o \
|
|
|
|
|
ftpatent.ppc.o ftpfr.ppc.o ftstroke.ppc.o ftsynth.ppc.o \
|
|
|
|
|
fttype1.ppc.o ftwinfnt.ppc.o
|
2001-12-22 21:32:20 +01:00
|
|
|
|
|
|
|
|
|
DEBUGPPC = ftdebug.ppc.o ftdebugpure.ppc.o
|
|
|
|
|
|
2005-03-25 23:18:01 +01:00
|
|
|
|
AFITPPC = autofit.ppc.o
|
|
|
|
|
|
2005-11-17 15:19:30 +01:00
|
|
|
|
GXVPPC = gxvalid.ppc.o
|
|
|
|
|
|
2005-03-25 23:18:01 +01:00
|
|
|
|
OTVPPC = otvalid.ppc.o
|
2001-12-22 21:32:20 +01:00
|
|
|
|
|
|
|
|
|
PSPPC = psaux.ppc.o psnames.ppc.o pshinter.ppc.o
|
|
|
|
|
|
|
|
|
|
RASTERPPC = raster.ppc.o smooth.ppc.o
|
|
|
|
|
|
2002-05-29 00:38:05 +02:00
|
|
|
|
FONTDPPC = cff.ppc.o type1.ppc.o type42.ppc.o type1cid.ppc.o truetype.ppc.o\
|
|
|
|
|
bdf.ppc.o pcf.ppc.o pfr.ppc.o winfnt.ppc.o
|
2001-12-22 21:32:20 +01:00
|
|
|
|
|
2011-01-05 18:44:53 +01:00
|
|
|
|
libft2_ppc.a: $(BASEPPC) $(AFITPPC) $(GXVPPC) $(OTVPPC) $(PSPPC) $(RASTERPPC) sfnt.ppc.o ftcache.ppc.o $(FONTDPPC) gzip.ppc.o bzip2.ppc.o lzw.ppc.o
|
|
|
|
|
$(AR) $@ $(BASEPPC) $(AFITPPC) $(GXVPPC) $(OTVPPC) $(PSPPC) $(RASTERPPC) sfnt.ppc.o ftcache.ppc.o $(FONTDPPC) gzip.ppc.o bzip2.ppc.o lzw.ppc.o
|
2001-12-22 21:32:20 +01:00
|
|
|
|
-@ ($(RANLIB) $@ || true) >/dev/null 2>&1
|
2005-06-08 13:56:55 +02:00
|
|
|
|
|
|
|
|
|
#Local Variables:
|
|
|
|
|
#coding: latin-1
|
|
|
|
|
#End:
|