# Settings for a typical GNU C++ compiler in Linux/Unix without graphics.

SYSLIB  =
SYSLIBG =
SYSINCL =
CXX = g++
COMPILE = $(CXX) -O2 -ansi -pedantic -Wall
LINK    = $(CXX) -s
LINKGUI = $(CXX) -s
MAKELIB = ar cru
IDXLIB  = ranlib
REMOVE  = rm -f
MKDIR   = mkdir
EXE     = 
LIBEXT  = .a
OBJEXT  = .o

