[cvs] / fvdi / CONFIGVARS Repository:
ViewVC logotype

View of /fvdi/CONFIGVARS

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.11 - (download) (annotate)
Mon Dec 4 07:54:26 2006 UTC (3 years, 9 months ago) by johan
Branch: MAIN
CVS Tags: HEAD
Changes since 1.10: +2 -1 lines
Changed to the latest stable release of FreeType (2.2.1).
# Handle cross compilation

NATIVE_CC = gcc

ifeq ($(M68K_ATARI_MINT_CROSS),yes)
 CROSSPREFIX = m68k-atari-mint

 CC     = $(CROSSPREFIX)-gcc
 AS     = $(CROSSPREFIX)-as
 LD     = $(CROSSPREFIX)-ld
 AR     = $(CROSSPREFIX)-ar
 RANLIB = $(CROSSPREFIX)-ranlib
 STRIP  = $(CROSSPREFIX)-strip
 FLAGS  = $(CROSSPREFIX)-flags
else
 CC     = gcc
 AS     = as
 LD     = ld
 AR     = ar
 RANLIB = ranlib
 STRIP  = strip
 FLAGS  = flags
endif

# Debug build (mainly FreeType2 debugs here)
DEBUG  = no

# CPU to compile for
CPU    = 000

# General compilation and optimization options (CFLAGS)
OPTS   = -O2 -fomit-frame-pointer
# OPTS   = -O2 -fomit-frame-pointer -mshort

# If building for 68000 (no long multiply instruction),
# this must be set to point to the gcc library.
ifeq ($(CPU),000)
 LIBS = -L/usr/lib/gcc-lib/m68k-atari-mint/2.95.3/ -lgcc
endif


# Set these to point to the correct directories for FreeType support!
#stdlib_srcdir  = $(top_srcdir)/modules/ft2/stdlib
#ft2_srcdir     = $(top_srcdir)/modules/ft2/freetype-2.1.9
#ft2_srcdir     = $(top_srcdir)/modules/ft2/freetype-2.1.10
ft2_srcdir     = $(top_srcdir)/modules/ft2/freetype-2.2.1
#ft2_srcdir     = $(top_srcdir)/../freetype2
#libkern_srcdir = $(top_srcdir)/../freemint/sys/libkern

#stdlib_srcdir  =
#ft2_srcdir     =
#libkern_srcdir =

ifeq ($(DEBUG),yes)
 FT2_DEBUG_OPTS = -I$(top_srcdir)/modules/ft2/devel 
else
 FT2_DEBUG_OPTS =
endif

Johan Klockars
ViewVC Help
Powered by ViewVC 1.0.1