
#
# Installation prefix 
#
# This folder and the subfolders "bin", "lib" and "include" will be created
# upon "make install" if they don't exist.
#
INSTALL_PREFIX:=/usr


# -------------------------------------------------------------------------
#
# in most cases you won't need to make any changes below this point.
#

# define what tools are to be used
CC:=gcc

# turn on optimization
CFLAGS:= -O2 -fPIC 

# assume that the headr files history.h and readline.h are present
CFLAGS+= -DHAVE_READLINE_HISTORY_H -DHAVE_READLINE_READLINE_H

# include the known include folders
CFLAGS+= -I/usr/local/include -I/usr/include



# the following is debuggin stuff. If all works fine you want need this

# include symbol table
CFLAGS+=-g3

# turn on most warnings
CFLAGS+= -Wall

# the following vars are needed for extended debugging only
#CFLAGS+= -DDEBUG=1 
#CFLAGS+= -DREADER_DEBUG
#CFLAGS+= -DDEBUG_CJCTAPI
#CFLAGS+= -DCJPPA_DEBUG 
#CFLAGS+= -DCJPPA_DEBUG_TRANSFER

