1#  Makefile for SIMLIB
2#  ===================
3
4# name of the compiler for C++ language
5CXX=c++
6
7# C++ compiler flags
8CXXFLAGS  = -Wall -std=c++98
9CXXFLAGS += -O2 # add optimization level
10CXXFLAGS += -g  # add debug info
11#CXXFLAGS += -pg # add profiling support
12#CXXFLAGS += -Weffc++ # add extra checking of source code
13
14include Makefile.generic
15
16#
17