feat(rotating-polytrope): initial commit
This commit is contained in:
20
makefile
Normal file
20
makefile
Normal file
@@ -0,0 +1,20 @@
|
||||
default: all
|
||||
|
||||
all: run
|
||||
|
||||
run: main.cpp
|
||||
clang++ -O3 -o run main.cpp -lmfem -std=c++23
|
||||
|
||||
run_debug: main.cpp
|
||||
clang++ -g -O0 -o run_debug main.cpp -lmfem -std=c++23
|
||||
|
||||
clean:
|
||||
rm -f run run_debug
|
||||
|
||||
@.PHONY: all run run_debug clean
|
||||
|
||||
test: run
|
||||
./run
|
||||
|
||||
debug: run_debug
|
||||
lldb run_debug
|
||||
Reference in New Issue
Block a user