# Settings for a typical GNU C++ compiler in Linux/Unix.
# The standard X Window library is used for graphics (if any).

SYSLIB  = -lpthread
SYSLIBG = -L/usr/X11R6/lib/ -lX11 -lGL -lXpm -lpthread
SYSINCL =
CXX = g++
COMPILE = $(CXX) -O2 -ansi -pedantic -Wall
LINK    = $(CXX) -s -static -static-libgcc
LINKGUI = $(CXX) -s
MAKELIB = ar cru
IDXLIB  = ranlib
REMOVE  = rm -f
MKDIR   = mkdir
EXE     = 
LIBEXT  = .a
OBJEXT  = .o

