
CC = gcc
LD = ld
RM = rm -f
AR = ar
RANLIB = ranlib
SHELL = /bin/sh

DEPFILE = Depend
DEPEND = makedepend



##############################################################################
# Set MESATOP and MLXTOP to the full pathname of the mesa and mlx source tree
##############################################################################

MESATOP =  $(WORKDIR_3D)/mesa
MLXTOP = $(WORKDIR_3D)/mlx



##############################################################################
# Set ACLAPIDIR to the full pathname of the aclapi.pl file
##############################################################################

ACLAPIDIR = $(MLXTOP)/include/ACL



##############################################################################
# defines which can be set:
#
# MLX_TEST	- for testing purposes
# _ACL_MESA_	- to link with Mesa library
# _ACL_OPENGL_	- use OpenGL types
##############################################################################

MLX_DEFINES = -DMLX_TEST -D_ACL_MESA_ -D_ACL_OPENGL_

MLX_CFLAGS = -g -m486 -Wall



MLX_LIBMAJOR = 0
MLX_LIBMINOR = 2

MLX_LIBVERSION = $(MLX_LIBMAJOR).$(MLX_LIBMINOR)
MLX_LIBSONAME = libMLX.so
MLX_LIBANAME = libMLX.a



