misc/libfreetype/builds/amiga/smakefile
author koda
Mon, 25 Apr 2011 01:46:54 +0200
changeset 5172 88f2e05288ba
permissions -rw-r--r--
aaand let's add freetype as well while we are at it other smaller changes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5172
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     1
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     2
# Makefile for FreeType2 link library using Amiga SAS/C 6.58
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     3
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     6
# Copyright 2005,2006, 2007, 2009 by
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     7
# Werner Lemberg and Detlef Würkner.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     8
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     9
# This file is part of the FreeType project, and may only be used, modified,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    10
# and distributed under the terms of the FreeType project license,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    11
# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    12
# indicate that you have read the license and understand and accept it
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    13
# fully.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    14
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    15
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    16
# to build from the builds/amiga directory call
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    17
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    18
#  smake assign
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    19
#  smake
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    20
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    21
# Your programs source code should start with this
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    22
# (uncomment the parts you do not need to keep the program small):
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    23
# ---8<---
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    24
#define FT_USE_AUTOFIT // autofitter
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    25
#define FT_USE_RASTER  // monochrome rasterizer
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    26
#define FT_USE_SMOOTH  // anti-aliasing rasterizer
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    27
#define FT_USE_TT      // truetype font driver
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    28
#define FT_USE_T1      // type1 font driver
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    29
#define FT_USE_T42     // type42 font driver
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    30
#define FT_USE_T1CID   // cid-keyed type1 font driver
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    31
#define FT_USE_CFF     // opentype font driver
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    32
#define FT_USE_BDF     // bdf bitmap font driver
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    33
#define FT_USE_PCF     // pcf bitmap font driver
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    34
#define FT_USE_PFR     // pfr font driver
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    35
#define FT_USE_WINFNT  // windows .fnt|.fon bitmap font driver
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    36
#define FT_USE_OTV     // opentype validator
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    37
#define FT_USE_GXV     // truetype gx validator
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    38
#include "FT:src/base/ftinit.c"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    39
# ---8<---
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    40
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    41
# link your programs with ft2_680x0.lib and either ftsystem.o or ftsystempure.o
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    42
# (and either ftdebug.o or ftdebugpure.o if you enabled FT_DEBUG_LEVEL_ERROR or
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    43
# FT_DEBUG_LEVEL_TRACE in include/freetype/config/ftoption.h).
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    44
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    45
OBJBASE = ftbase.o ftbbox.o ftbdf.o ftbitmap.o ftcid.o ftfstype.o ftgasp.o   \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    46
	  ftglyph.o ftgxval.o ftlcdfil.o ftmm.o ftotval.o ftpatent.o ftpfr.o \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    47
	  ftstroke.o ftsynth.o fttype1.o ftwinfnt.o ftxf86.o
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    48
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    49
OBJSYSTEM = ftsystem.o ftsystempure.o
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    50
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    51
OBJDEBUG = ftdebug.o ftdebugpure.o
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    52
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    53
OBJAFIT = autofit.o
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    54
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    55
OBJGXV = gxvalid.o
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    56
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    57
OBJOTV = otvalid.o
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    58
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    59
OBJPS = psaux.o psnames.o pshinter.o
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    60
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    61
OBJRASTER = raster.o smooth.o
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    62
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    63
OBJSFNT = sfnt.o
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    64
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    65
OBJCACHE = ftcache.o
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    66
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    67
OBJFONTD = cff.o type1.o type42.o type1cid.o\
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    68
	   truetype.o winfnt.o bdf.o pcf.o pfr.o
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    69
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    70
CORE = FT:src/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    71
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    72
CPU       = 68000
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    73
#CPU      = 68020
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    74
#CPU      = 68030
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    75
#CPU      = 68040
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    76
#CPU      = 68060
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    77
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    78
OPTIMIZER = optinlocal
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    79
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    80
SCFLAGS = optimize opttime optsched strmerge data=faronly idlen=50 cpu=$(CPU)\
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    81
	  idir=include/ idir=$(CORE) idir=FT:include/ nostackcheck nochkabort\
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    82
	  noicons ignore=79,85,110,306 parameters=both define=FT2_BUILD_LIBRARY
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    83
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    84
LIB  = ft2_$(CPU).lib
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    85
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    86
# sample linker options
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    87
OPTS = link lib=$(LIB),lib:sc.lib,lib:amiga.lib,lib:debug.lib\
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    88
       smallcode smalldata noicons utillib
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    89
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    90
# sample program entry
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    91
#myprog: myprog.c ftsystem.o $(LIB)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    92
#	sc $< programname=$@ ftsystem.o $(SCFLAGS) $(OPTS)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    93
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    94
all:	$(LIB) $(OBJSYSTEM) $(OBJDEBUG)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    95
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    96
assign:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    97
	assign FT: //
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    98
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    99
# uses separate object modules in lib to make for easier debugging
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   100
# also, can make smaller programs if entire engine is not used
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   101
ft2_$(CPU).lib:  $(OBJBASE) $(OBJAFIT) $(OBJOTV) $(OBJPS) $(OBJRASTER) $(OBJSFNT) $(OBJCACHE) $(OBJFONTD) lzw.o gzip.o bzip2.o
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   102
	oml $@ r $(OBJBASE) $(OBJAFIT) $(OBJOTV) $(OBJPS) $(OBJRASTER) $(OBJSFNT) $(OBJCACHE) $(OBJFONTD) lzw.o gzip.o bzip2.o
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   103
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   104
clean:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   105
	-delete \#?.o
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   106
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   107
realclean: clean
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   108
	-delete ft2$(CPU).lib
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   109
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   110
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   111
# freetype library base
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   112
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   113
ftbase.o: $(CORE)base/ftbase.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   114
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   115
ftinit.o: $(CORE)base/ftinit.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   116
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   117
ftsystem.o: $(CORE)base/ftsystem.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   118
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   119
ftsystempure.o: src/base/ftsystem.c	## pure version for use in run-time library etc
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   120
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   121
ftdebug.o: $(CORE)base/ftdebug.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   122
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   123
ftdebugpure.o: src/base/ftdebug.c	## pure version for use in run-time library etc
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   124
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   125
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   126
# freetype library base extensions
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   127
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   128
ftbbox.o: $(CORE)base/ftbbox.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   129
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   130
ftbdf.o: $(CORE)base/ftbdf.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   131
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   132
ftbitmap.o: $(CORE)base/ftbitmap.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   133
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   134
ftcid.o: $(CORE)base/ftcid.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   135
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   136
ftfstype.o: $(CORE)base/ftfstype.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   137
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   138
ftgasp.o: $(CORE)base/ftgasp.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   139
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   140
ftglyph.o: $(CORE)base/ftglyph.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   141
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   142
ftgxval.o: $(CORE)base/ftgxval.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   143
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   144
ftlcdfil.o: $(CORE)base/ftlcdfil.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   145
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   146
ftmm.o: $(CORE)base/ftmm.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   147
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   148
ftotval.o: $(CORE)base/ftotval.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   149
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   150
ftpatent.o: $(CORE)base/ftpatent.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   151
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   152
ftpfr.o: $(CORE)base/ftpfr.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   153
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   154
ftstroke.o: $(CORE)base/ftstroke.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   155
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   156
ftsynth.o: $(CORE)base/ftsynth.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   157
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   158
fttype1.o: $(CORE)base/fttype1.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   159
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   160
ftwinfnt.o: $(CORE)base/ftwinfnt.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   161
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   162
ftxf86.o: $(CORE)base/ftxf86.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   163
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   164
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   165
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   166
# freetype library autofitter module
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   167
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   168
autofit.o: $(CORE)autofit/autofit.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   169
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   170
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   171
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   172
# freetype library PS hinting module
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   173
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   174
pshinter.o: $(CORE)pshinter/pshinter.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   175
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   176
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   177
# freetype library PS support module
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   178
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   179
psaux.o: $(CORE)psaux/psaux.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   180
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   181
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   182
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   183
# freetype library PS glyph names module
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   184
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   185
psnames.o: $(CORE)psnames/psnames.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   186
	sc $(SCFLAGS) code=far objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   187
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   188
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   189
# freetype library monochrome raster module
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   190
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   191
raster.o: $(CORE)raster/raster.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   192
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   193
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   194
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   195
# freetype library anti-aliasing raster module
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   196
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   197
smooth.o: $(CORE)smooth/smooth.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   198
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   199
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   200
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   201
# freetype library 'sfnt' module
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   202
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   203
sfnt.o: $(CORE)sfnt/sfnt.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   204
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   205
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   206
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   207
# freetype library glyph and image caching system (still experimental)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   208
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   209
ftcache.o: $(CORE)cache/ftcache.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   210
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   211
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   212
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   213
# freetype library OpenType font driver
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   214
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   215
cff.o: $(CORE)cff/cff.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   216
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   217
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   218
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   219
# freetype library TrueType font driver
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   220
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   221
truetype.o: $(CORE)truetype/truetype.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   222
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   223
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   224
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   225
# freetype library Type1 font driver
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   226
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   227
type1.o: $(CORE)type1/type1.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   228
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   229
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   230
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   231
# FreeType2 library Type42 font driver
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   232
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   233
type42.o: $(CORE)type42/type42.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   234
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   235
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   236
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   237
# freetype library CID-keyed Type1 font driver
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   238
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   239
type1cid.o: $(CORE)cid/type1cid.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   240
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   241
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   242
# freetype library CID-keyed Type1 font driver extensions
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   243
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   244
#cidafm.o: $(CORE)cid/cidafm.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   245
#	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   246
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   247
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   248
# freetype library BDF bitmap font driver
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   249
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   250
bdf.o: $(CORE)bdf/bdf.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   251
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   252
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   253
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   254
# freetype library PCF bitmap font driver
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   255
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   256
pcf.o: $(CORE)pcf/pcf.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   257
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   258
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   259
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   260
# freetype library gzip support for compressed PCF bitmap fonts
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   261
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   262
gzip.o: $(CORE)gzip/ftgzip.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   263
	sc $(SCFLAGS) define FAR objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   264
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   265
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   266
# freetype library bzip2 support for compressed PCF bitmap fonts
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   267
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   268
bzip2.o: $(CORE)bzip2/ftbzip2.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   269
	sc $(SCFLAGS) define FAR objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   270
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   271
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   272
# freetype library compress support for compressed PCF bitmap fonts
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   273
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   274
lzw.o: $(CORE)lzw/ftlzw.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   275
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   276
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   277
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   278
# freetype library PFR font driver
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   279
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   280
pfr.o: $(CORE)pfr/pfr.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   281
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   282
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   283
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   284
# freetype library Windows FNT/FON bitmap font driver
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   285
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   286
winfnt.o: $(CORE)winfonts/winfnt.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   287
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   288
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   289
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   290
# freetype library TrueTypeGX validator
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   291
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   292
gxvalid.o: $(CORE)gxvalid/gxvalid.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   293
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   294
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   295
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   296
# freetype library OpenType validator
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   297
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   298
otvalid.o: $(CORE)otvalid/otvalid.c
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   299
	sc $(SCFLAGS) objname=$@ $<
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   300
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   301
#Local Variables:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   302
#coding: latin-1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   303
#End: