# C/C++ compiler, linker
CC = gcc 
CXX = g++ 
LINK = $(CC) 

# static library
AR = ar
RANLIB = ranlib
ARFLAGS = -ruv
RANLIB = ranlib

# builds shared library; $(SHARED_LIB) defined in Makefile
SHARED_LINK = gcc -shared 

OPT = -O3 
DEF = -DUNIX  
WARN = -Wall
PIC = -fPIC

DEPFLAGS=-Dlinux

# add other include paths here, i.e. -I/usr/local/include
ARCH_INC =

# add other linker flags here, i.e. -L/usr/local/lib
ARCH_LDFLAGS = 

# add other libraries here, i.e. -liostream
ARCH_LIB = 
