From 6b4624948607b7dc6badd231e58187402ffd83bc Mon Sep 17 00:00:00 2001 From: Yanlong Li <44524468+DragonPara@users.noreply.github.com> Date: Fri, 16 Jun 2023 09:59:14 +0800 Subject: [PATCH] Create Makefile --- src/union_compile/pythonCallFortran/Makefile | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 src/union_compile/pythonCallFortran/Makefile diff --git a/src/union_compile/pythonCallFortran/Makefile b/src/union_compile/pythonCallFortran/Makefile new file mode 100644 index 0000000..73feee9 --- /dev/null +++ b/src/union_compile/pythonCallFortran/Makefile @@ -0,0 +1,2 @@ +libadd_arrays.so: add_arrays.f90 + gfortran $< --shared -fPIC -o $@