Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / modules / freetype2 / builds / amiga / smakefile
blobc9209f7cfc5bcbe3997e214b57e259cfee882ae2
2 # Makefile for FreeType2 link library using Amiga SAS/C 6.58
6 # Copyright 2005,2006, 2007 by
7 # Werner Lemberg and Detlef Würkner.
9 # This file is part of the FreeType project, and may only be used, modified,
10 # and distributed under the terms of the FreeType project license,
11 # LICENSE.TXT.  By continuing to use, modify, or distribute this file you
12 # indicate that you have read the license and understand and accept it
13 # fully.
16 # to build from the builds/amiga directory call
18 #  smake assign
19 #  smake
21 # Your programs source code should start with this
22 # (uncomment the parts you do not need to keep the program small):
23 # ---8<---
24 #define FT_USE_AUTOFIT // autofitter
25 #define FT_USE_RASTER  // monochrome rasterizer
26 #define FT_USE_SMOOTH  // anti-aliasing rasterizer
27 #define FT_USE_TT      // truetype font driver
28 #define FT_USE_T1      // type1 font driver
29 #define FT_USE_T42     // type42 font driver
30 #define FT_USE_T1CID   // cid-keyed type1 font driver
31 #define FT_USE_CFF     // opentype font driver
32 #define FT_USE_BDF     // bdf bitmap font driver
33 #define FT_USE_PCF     // pcf bitmap font driver
34 #define FT_USE_PFR     // pfr font driver
35 #define FT_USE_WINFNT  // windows .fnt|.fon bitmap font driver
36 #define FT_USE_OTV     // opentype validator
37 #define FT_USE_GXV     // truetype gx validator
38 #include "FT:src/base/ftinit.c"
39 # ---8<---
41 # link your programs with ft2_680x0.lib and either ftsystem.o or ftsystempure.o
42 # (and either ftdebug.o or ftdebugpure.o if you enabled FT_DEBUG_LEVEL_ERROR or
43 # FT_DEBUG_LEVEL_TRACE in include/freetype/config/ftoption.h).
45 OBJBASE = ftbase.o ftbbox.o ftbdf.o ftbitmap.o ftgasp.o ftglyph.o  \
46           ftgxval.o ftlcdfil.o ftmm.o ftotval.o ftpfr.o ftstroke.o \
47           ftsynth.o fttype1.o ftwinfnt.o ftxf86.o
49 OBJSYSTEM = ftsystem.o ftsystempure.o
51 OBJDEBUG = ftdebug.o ftdebugpure.o
53 OBJAFIT = autofit.o
55 OBJGXV = gxvalid.o
57 OBJOTV = otvalid.o
59 OBJPS = psaux.o psnames.o pshinter.o
61 OBJRASTER = raster.o smooth.o
63 OBJSFNT = sfnt.o
65 OBJCACHE = ftcache.o
67 OBJFONTD = cff.o type1.o type42.o type1cid.o\
68            truetype.o winfnt.o bdf.o pcf.o pfr.o
70 CORE = FT:src/
72 CPU       = 68000
73 #CPU      = 68020
74 #CPU      = 68030
75 #CPU      = 68040
76 #CPU      = 68060
78 OPTIMIZER = optinlocal
80 SCFLAGS = optimize opttime optsched strmerge data=faronly idlen=50 cpu=$(CPU)\
81           idir=include/ idir=$(CORE) idir=FT:include/ nostackcheck nochkabort\
82           noicons ignore=79,85,110,306 parameters=both define=FT2_BUILD_LIBRARY
84 LIB  = ft2_$(CPU).lib
86 # sample linker options
87 OPTS = link lib=$(LIB),lib:sc.lib,lib:amiga.lib,lib:debug.lib\
88        smallcode smalldata noicons utillib
90 # sample program entry
91 #myprog: myprog.c ftsystem.o $(LIB)
92 #       sc $< programname=$@ ftsystem.o $(SCFLAGS) $(OPTS)
94 all:    $(LIB) $(OBJSYSTEM) $(OBJDEBUG)
96 assign:
97         assign FT: //
99 # uses separate object modules in lib to make for easier debugging
100 # also, can make smaller programs if entire engine is not used
101 ft2_$(CPU).lib:  $(OBJBASE) $(OBJAFIT) $(OBJOTV) $(OBJPS) $(OBJRASTER) $(OBJSFNT) $(OBJCACHE) $(OBJFONTD) lzw.o gzip.o
102         oml $@ r $(OBJBASE) $(OBJAFIT) $(OBJOTV) $(OBJPS) $(OBJRASTER) $(OBJSFNT) $(OBJCACHE) $(OBJFONTD) lzw.o gzip.o
104 clean:
105         -delete \#?.o
107 realclean: clean
108         -delete ft2$(CPU).lib
111 # freetype library base
113 ftbase.o: $(CORE)base/ftbase.c
114         sc $(SCFLAGS) objname=$@ $<
115 ftinit.o: $(CORE)base/ftinit.c
116         sc $(SCFLAGS) objname=$@ $<
117 ftsystem.o: $(CORE)base/ftsystem.c
118         sc $(SCFLAGS) objname=$@ $<
119 ftsystempure.o: src/base/ftsystem.c     ## pure version for use in run-time library etc
120         sc $(SCFLAGS) objname=$@ $<
121 ftdebug.o: $(CORE)base/ftdebug.c
122         sc $(SCFLAGS) objname=$@ $<
123 ftdebugpure.o: src/base/ftdebug.c       ## pure version for use in run-time library etc
124         sc $(SCFLAGS) objname=$@ $<
126 # freetype library base extensions
128 ftbbox.o: $(CORE)base/ftbbox.c
129         sc $(SCFLAGS) objname=$@ $<
130 ftbdf.o: $(CORE)base/ftbdf.c
131         sc $(SCFLAGS) objname=$@ $<
132 ftbitmap.o: $(CORE)base/ftbitmap.c
133         sc $(SCFLAGS) objname=$@ $<
134 ftgasp.o: $(CORE)base/ftgasp.c
135         sc $(SCFLAGS) objname=$@ $<
136 ftglyph.o: $(CORE)base/ftglyph.c
137         sc $(SCFLAGS) objname=$@ $<
138 ftgxval.o: $(CORE)base/ftgxval.c
139         sc $(SCFLAGS) objname=$@ $<
140 ftlcdfil.o: $(CORE)base/ftlcdfil.c
141         sc $(SCFLAGS) objname=$@ $<
142 ftmm.o: $(CORE)base/ftmm.c
143         sc $(SCFLAGS) objname=$@ $<
144 ftotval.o: $(CORE)base/ftotval.c
145         sc $(SCFLAGS) objname=$@ $<
146 ftpfr.o: $(CORE)base/ftpfr.c
147         sc $(SCFLAGS) objname=$@ $<
148 ftstroke.o: $(CORE)base/ftstroke.c
149         sc $(SCFLAGS) objname=$@ $<
150 ftsynth.o: $(CORE)base/ftsynth.c
151         sc $(SCFLAGS) objname=$@ $<
152 fttype1.o: $(CORE)base/fttype1.c
153         sc $(SCFLAGS) objname=$@ $<
154 ftwinfnt.o: $(CORE)base/ftwinfnt.c
155         sc $(SCFLAGS) objname=$@ $<
156 ftxf86.o: $(CORE)base/ftxf86.c
157         sc $(SCFLAGS) objname=$@ $<
160 # freetype library autofitter module
162 autofit.o: $(CORE)autofit/autofit.c
163         sc $(SCFLAGS) objname=$@ $<
166 # freetype library PS hinting module
168 pshinter.o: $(CORE)pshinter/pshinter.c
169         sc $(SCFLAGS) objname=$@ $<
171 # freetype library PS support module
173 psaux.o: $(CORE)psaux/psaux.c
174         sc $(SCFLAGS) objname=$@ $<
177 # freetype library PS glyph names module
179 psnames.o: $(CORE)psnames/psnames.c
180         sc $(SCFLAGS) code=far objname=$@ $<
183 # freetype library monochrome raster module
185 raster.o: $(CORE)raster/raster.c
186         sc $(SCFLAGS) objname=$@ $<
189 # freetype library anti-aliasing raster module
191 smooth.o: $(CORE)smooth/smooth.c
192         sc $(SCFLAGS) objname=$@ $<
195 # freetype library 'sfnt' module
197 sfnt.o: $(CORE)sfnt/sfnt.c
198         sc $(SCFLAGS) objname=$@ $<
201 # freetype library glyph and image caching system (still experimental)
203 ftcache.o: $(CORE)cache/ftcache.c
204         sc $(SCFLAGS) objname=$@ $<
207 # freetype library OpenType font driver
209 cff.o: $(CORE)cff/cff.c
210         sc $(SCFLAGS) objname=$@ $<
213 # freetype library TrueType font driver
215 truetype.o: $(CORE)truetype/truetype.c
216         sc $(SCFLAGS) objname=$@ $<
219 # freetype library Type1 font driver
221 type1.o: $(CORE)type1/type1.c
222         sc $(SCFLAGS) objname=$@ $<
225 # FreeType2 library Type42 font driver
227 type42.o: $(CORE)type42/type42.c
228         sc $(SCFLAGS) objname=$@ $<
231 # freetype library CID-keyed Type1 font driver
233 type1cid.o: $(CORE)cid/type1cid.c
234         sc $(SCFLAGS) objname=$@ $<
236 # freetype library CID-keyed Type1 font driver extensions
238 #cidafm.o: $(CORE)cid/cidafm.c
239 #       sc $(SCFLAGS) objname=$@ $<
242 # freetype library BDF bitmap font driver
244 bdf.o: $(CORE)bdf/bdf.c
245         sc $(SCFLAGS) objname=$@ $<
248 # freetype library PCF bitmap font driver
250 pcf.o: $(CORE)pcf/pcf.c
251         sc $(SCFLAGS) objname=$@ $<
254 # freetype library gzip support for compressed PCF bitmap fonts
256 gzip.o: $(CORE)gzip/ftgzip.c
257         sc $(SCFLAGS) define FAR objname=$@ $<
260 # freetype library compress support for compressed PCF bitmap fonts
262 lzw.o: $(CORE)lzw/ftlzw.c
263         sc $(SCFLAGS) objname=$@ $<
266 # freetype library PFR font driver
268 pfr.o: $(CORE)pfr/pfr.c
269         sc $(SCFLAGS) objname=$@ $<
272 # freetype library Windows FNT/FON bitmap font driver
274 winfnt.o: $(CORE)winfonts/winfnt.c
275         sc $(SCFLAGS) objname=$@ $<
278 # freetype library TrueTypeGX validator
280 gxvalid.o: $(CORE)gxvalid/gxvalid.c
281         sc $(SCFLAGS) objname=$@ $<
284 # freetype library OpenType validator
286 otvalid.o: $(CORE)otvalid/otvalid.c
287         sc $(SCFLAGS) objname=$@ $<
289 #Local Variables:
290 #coding: latin-1
291 #End: