# # Make variables for the Abacus, edit to suit system, taste or mood :) # # C compiler CC ?= gcc # C++ compiler CCC = $(CXX) # C++ compiler running only the pre-processing stage CPP = $(CXX) -E # Grammar generator - e.g. bison,yacc YACC = yacc # Lexical scanner - e.g. flex,lex LEX = flex # Favourite flags for favourite compiler CCFLAGS = $(CXXFLAGS) # Please don't change the next three lines unless you know what you are doing.. AROPTIONS = rc IDIR = ../include LIBDIR = ../lib # Add extra include dirs here IFLAGS = -I$(IDIR) ${CFLAGS} # Add extra directories where you want the abacus to search for libraries here LFLAGS = ${LDFLAGS} -L$(LIBDIR) -L.