ROOT_DIR = ../..
INC = $(ROOT_DIR)/include
BIN = $(ROOT_DIR)/bin
LIBS = -lellib

CXX = mpic++
CXXFLAGS = -I$(INC) -L$(BIN) $(LIBS) -Wall -DPARALLEL

all:
	$(CXX) example.cpp -o run.exe $(CXXFLAGS)

debug: CXXFLAGS += -g
debug: all

clean:
	rm run.exe *.txt
