CCOMPILE=mpic++ CPPFLAGS= -I$(HADOOP_HOME)/include -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux -I [Input the path for system code directory] -Wno-deprecated -O2 LIB = -L$(HADOOP_HOME)/lib/native LDFLAGS = -lhdfs all: run run: run.cpp $(CCOMPILE) run.cpp $(CPPFLAGS) $(LIB) $(LDFLAGS) -o run clean: -rm run