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