mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
12 lines
211 B
Makefile
12 lines
211 B
Makefile
# Set to appropriate C++ compiler
|
|
CPP=g++
|
|
CPPFLAGS=-I../../tecsrc ../../tecio.a
|
|
EXECUTABLE=gridsolution
|
|
FILES=$(EXECUTABLE).cpp
|
|
|
|
build:
|
|
$(CPP) $(FILES) $(CPPFLAGS) -o $(EXECUTABLE)
|
|
|
|
clean:
|
|
rm -f $(EXECUTABLE)
|