From 033bc825d7e91904ca5b4b26db16f605384f3431 Mon Sep 17 00:00:00 2001 From: Ansgar Wehrhahn <31626864+AWehrhahn@users.noreply.github.com> Date: Fri, 26 Nov 2021 15:36:25 +0100 Subject: [PATCH] remove parallel --- Makefile_parallel.am | 60 -------------------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 Makefile_parallel.am diff --git a/Makefile_parallel.am b/Makefile_parallel.am deleted file mode 100644 index 0f3fd8e..0000000 --- a/Makefile_parallel.am +++ /dev/null @@ -1,60 +0,0 @@ -AUTOMAKE_OPTIONS = foreign - -ACLOCAL_AMFLAGS = -I m4 - -CXXLD = $(F77) - -lib_LTLIBRARIES = libsme.la -libsme_la_SOURCES = \ - src/sme/platform.h \ - src/sme/sme_synth_parallel.h \ - src/sme/sme_synth_parallel.cpp \ - src/sme/sme_idl_interface.h \ - src/sme/sme_idl_interface.cpp \ - src/sme/sme_cython_interface.h \ - src/sme/sme_cython_interface.cpp \ - src/sme/sme_parallel_interface.h \ - src/sme/sme_parallel_interface.cpp \ - src/eos/eos.f \ - src/eos/eos_eqns.f \ - src/eos/eos_math_special.f \ - src/eos/kp_q_spln.f \ - src/sme/hlinop.f \ - src/sme/hlinprof.f -libsme_la_LDFLAGS = -fPIC -version-info 5:22:0 -shared -no-undefined -libsme_la_CPPFLAGS = -fPIC -shared -O3 -libsme_la_FFLAGS = -fPIC -shared -O3 -libsme_la_LIBADD = -lc -lm -lstdc++ -lgfortran - -dist_pkgdata_DATA = src/data/bpo_self.grid.INTEL \ - src/data/Fe1_Bautista2017.dat.INTEL \ - src/data/NH_Stancil2018.dat.INTEL \ - src/data/stehle_long.dat.INTEL \ - src/data/vcsbalmer.dat - -BUILT_SOURCES = src/sme/platform.h old_link - -CLEANFILES = src/sme/platform.h - -PLATFORM = @TARGET@ -MACHINE = @TARGET_CPU@ -BITS = 64 -SHL_EXT = "$(PLATFORM).$(MACHINE).$(BITS)" - -DATA_DIR = @datadir@/libsme/ - -src/sme/platform.h: - echo '#define PLATFORM "$(PLATFORM)"' > src/sme/platform.h - echo '#define DATA_DIR "$(DATA_DIR)"' >> src/sme/platform.h - -old_link: libsme.la - $(MKDIR_P) $(@OUTPUT_DIR@) && cd $(@OUTPUT_DIR@) && $(LN_S) -f libsme@EXTENSION@ sme_synth.so.$(SHL_EXT) - -flib_name: - echo libgfortran*@EXTENSION@ - -flib_source: - $(F77) --print-file-name=libgfortran@EXTENSION@ - -flib_target: - echo $(@OUTPUT_DIR@)/libgfortran@EXTENSION@ \ No newline at end of file