Skip to content
Snippets Groups Projects
linux2-config.py 4.28 KiB
Newer Older
  • Learn to ignore specific revisions
  • Nathan Letwory's avatar
    Nathan Letwory committed
    LCGDIR = '../lib/linux2'
    BF_PYTHON = '/usr'
    BF_PYTHON_VERSION = '2.4'
    
    BF_PYTHON_INC = BF_PYTHON + '/include/python${BF_PYTHON_VERSION}'
    BF_PYTHON_BINARY = BF_PYTHON+'/bin/python${BF_PYTHON_VERSION}'
    BF_PYTHON_LIB = 'python${BF_PYTHON_VERSION}' #BF_PYTHON+'/lib/python'+BF_PYTHON_VERSION+'/config/libpython'+BF_PYTHON_VERSION+'.a'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    
    WITH_BF_OPENAL = 'true'
    BF_OPENAL = '/usr'
    
    BF_OPENAL_INC = '${BF_OPENAL}/include'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_OPENAL_LIB = 'openal'
    
    WITH_BF_SDL = 'true'
    BF_SDL = '/usr' #$(shell sdl-config --prefix)
    
    BF_SDL_INC = '${BF_SDL}/include/SDL' #$(shell $(BF_SDL)/bin/sdl-config --cflags)
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_SDL_LIB = 'SDL' #BF_SDL #$(shell $(BF_SDL)/bin/sdl-config --libs) -lSDL_mixer
    
    WITH_BF_FMOD = 'false'
    BF_FMOD = LCGDIR + '/fmod'
    
    WITH_BF_OPENEXR = 'true'
    BF_OPENEXR = '/usr'
    
    BF_OPENEXR_INC = '${BF_OPENEXR}/include/OpenEXR'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_OPENEXR_LIB = ' Iex Half IlmImf Imath '
    
    WITH_BF_JPEG = 'true'
    BF_JPEG = '/usr'
    
    BF_JPEG_INC = '${BF_JPEG}/include'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_JPEG_LIB = 'jpeg'
    
    WITH_BF_PNG = 'true'
    BF_PNG = '/usr'
    
    BF_PNG_INC = '${BF_PNG}/include'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_PNG_LIB = 'png'
    
    WITH_BF_TIFF = 'true'
    BF_TIFF = '/usr'
    
    BF_TIFF_INC = '${BF_TIFF}/include'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_TIFF_LIB = 'tiff'
    
    WITH_BF_ZLIB = 'true'
    BF_ZLIB = '/usr'
    BF_ZLIB_INC = BF_ZLIB + '/include'
    BF_ZLIB_LIB = 'z'
    
    WITH_BF_GETTEXT = 'true'
    BF_GETTEXT = '/usr'
    
    BF_GETTEXT_INC = '${BF_GETTEXT}/include'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_GETTEXT_LIB = 'gettextlib'
    
    BF_GETTEXT_LIBPATH = '${BF_GETTEXT}/lib'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    
    WITH_BF_FTGL = 'true'
    BF_FTGL = '#extern/bFTGL'
    
    BF_FTGL_INC = '${BF_FTGL}/include'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_FTGL_LIB = 'extern_ftgl'
    
    WITH_BF_GAMEENGINE='true'
    
    WITH_BF_ODE = 'false'
    BF_ODE = LCGDIR + '/ode'
    BF_ODE_INC = BF_ODE + '/include'
    BF_ODE_LIB = BF_ODE + '/lib/libode.a'
    
    WITH_BF_BULLET = 'true'
    BF_BULLET = '#extern/bullet'
    
    BF_BULLET_INC = '${BF_BULLET}/LinearMath ${BF_BULLET}/BulletDynamics ${BF_BULLET}/Bullet'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_BULLET_LIB = 'extern_bullet'
    
    BF_SOLID = '#extern/solid'
    BF_SOLID_INC = BF_SOLID
    BF_SOLID_LIB = 'extern_solid'
    
    #WITH_BF_NSPR = 'true'
    #BF_NSPR = $(LCGDIR)/nspr
    #BF_NSPR_INC = -I$(BF_NSPR)/include -I$(BF_NSPR)/include/nspr
    #BF_NSPR_LIB = 
    
    # Uncomment the following line to use Mozilla inplace of netscape
    #CPPFLAGS += -DMOZ_NOT_NET
    # Location of MOZILLA/Netscape header files...
    #BF_MOZILLA = $(LCGDIR)/mozilla
    #BF_MOZILLA_INC = -I$(BF_MOZILLA)/include/mozilla/nspr -I$(BF_MOZILLA)/include/mozilla -I$(BF_MOZILLA)/include/mozilla/xpcom -I$(BF_MOZILLA)/include/mozilla/idl
    #BF_MOZILLA_LIB =
    # Will fall back to look in BF_MOZILLA_INC/nspr and BF_MOZILLA_LIB
    # if this is not set.
    #
    # Be paranoid regarding library creation (do not update archives)
    #BF_PARANOID = 'true'
    
    # enable freetype2 support for text objects
    WITH_BF_FREETYPE = 'true'
    BF_FREETYPE = '/usr'
    
    BF_FREETYPE_INC = '${BF_FREETYPE}/include ${BF_FREETYPE}/include/freetype2'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_FREETYPE_LIB = 'freetype'
    
    WITH_BF_QUICKTIME = 'false' # -DWITH_QUICKTIME
    BF_QUICKTIME = '/usr/local'
    
    BF_QUICKTIME_INC = '${BF_QUICKTIME}/include' 
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    
    # Mesa Libs should go here if your using them as well....
    WITH_BF_OPENGL = 'true'
    BF_OPENGL = '/usr/X11R6'
    
    BF_OPENGL_INC = '${BF_OPENGL}/include'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    BF_OPENGL_LIB = 'GL GLU Xmu Xext X11 Xi'
    BF_OPENGL_LIBPATH = '/usr/X11R6/lib'
    
    BF_OPENGL_LIB_STATIC = '${BF_OPENGL}/lib/libGL.a ${BF_OPENGL}/lib/libGLU.a ${BF_OPENGL}/lib/libXmu.a ${BF_OPENGL}/lib/libXext.a ${BF_OPENGL}/lib/libX11.a ${BF_OPENGL}/lib/libXi.a'
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    ##
    ##CC = gcc
    ##CCC = g++
    ##ifeq ($CPU),alpha)
    ##   CFLAGS += -pipe -fPIC -funsigned-char -fno-strict-aliasing -mieee
    
    CFLAGS = ['-pipe','-fPIC','-funsigned-char','-fno-strict-aliasing']
    
    CPPFLAGS = ['-DXP_UNIX']
    CCFLAGS = ['-pipe','-fPIC','-funsigned-char','-fno-strict-aliasing']
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    REL_CFLAGS = ['-O2']
    REL_CCFLAGS = ['-O2']
    
    Nathan Letwory's avatar
    Nathan Letwory committed
    ##BF_DEPEND = 'true'
    ##
    ##AR = ar
    ##ARFLAGS = ruv
    ##ARFLAGSQUIET = ru
    ##
    C_WARN = ' -Wall -W -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wredundant-decls '
    
    CC_WARN = ' -Wall -W -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Wredundant-decls -Wreorder -Wctor-dtor-privacy -Wnon-virtual-dtor -Wold-style-cast -Woverloaded-virtual -Wsign-promo -Wsynth '
    
    ##FIX_STUBS_WARNINGS = -Wno-unused
    
    LLIBS = 'util c m dl pthread stdc++'
    ##LOPTS = --dynamic
    ##DYNLDFLAGS = -shared $(LDFLAGS)
    
    BF_PROFILE_FLAGS = ' -pg -g '
    BF_PROFILE = 'false'
    
    BF_DEBUG = 'false'
    BF_DEBUG_FLAGS = ''
    
    BF_BUILDDIR = '../build/linux2'
    BF_INSTALLDIR='../install/linux2'