#
# Default: GNU C++ 2.8.0:
#

# The C++ compiler:
CC           = g++

# The flags for the C++ compiler:
CFLAGS       = -O3

# Suffix of the object file names:
OBJ          = o

# Suffix of the library file name:
LIB          = a

# Command to compile only:
COMPILE_ONLY = $(CC) -c

# Flag to specify the output file name:
OUTPUT       = -o $@

# Command to make the library:
MAKE_LIB     = ar cr $@ $(MP_OBJS); ranlib $@

# Command to call the linker:
LINK         = $(CC) $(CFLAGS) $@.$(OBJ) piologie.$(LIB) -o $@

# Suffix of the C++ file names:
SUFFIX       = cpp
