openfoam/applications/utilities/postProcessing/dataConversion/foamToTecplot360/tecio/examples/squares/Makefile
2011-02-16 13:44:26 +00:00

11 lines
205 B
Makefile

# Set to appropriate C++ compiler
CPP=g++
CPPFLAGS=-I../../tecsrc ../../tecio.a
EXECUTABLE=squares
FILES=$(EXECUTABLE).cpp
build:
$(CPP) $(FILES) $(CPPFLAGS) -o $(EXECUTABLE)
clean:
rm -f $(EXECUTABLE)