From c11441fb1cdeb5b7400249121c91c996bffb0455 Mon Sep 17 00:00:00 2001 From: aakashsane Date: Thu, 21 Nov 2024 11:53:58 -0500 Subject: [PATCH] deleted .testing/tc4/Makefile --- .testing/tc4/Makefile | 60 ------------------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 .testing/tc4/Makefile diff --git a/.testing/tc4/Makefile b/.testing/tc4/Makefile deleted file mode 100644 index 0a7c525366..0000000000 --- a/.testing/tc4/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -FC = mpifort -LD = -FCFLAGS = -g -O2 -LDFLAGS = -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/opt/homebrew/Caskroom/miniforge/base/envs/mommy2/lib -L/opt/homebrew/Caskroom/miniforge/base/envs/mommy2/lib -LIBS = -lnetcdff -lnetcdf - -LAUNCHER ?= - -OUT = ocean_hgrid.nc topog.nc temp_salt_ic.nc sponge.nc - -# Since each program generates two outputs, we can only use one to track the -# creation. The second rule is used to indirectly re-invoke the first rule. -# -# Reference: -# https://www.gnu.org/software/automake/manual/html_node/Multiple-Outputs.html - -# Program output -all: ocean_hgrid.nc temp_salt_ic.nc -executables: gen_data gen_grid - -ocean_hgrid.nc: gen_grid - $(LAUNCHER) ./gen_grid -topog.nc: ocean_hgrid.nc - @test -f $@ || rm -f $^ - @test -f $@ || $(MAKE) $^ - -temp_salt_ic.nc: gen_data ocean_hgrid.nc - $(LAUNCHER) ./gen_data -sponge.nc: temp_salt_ic.nc - @test -f $@ || rm -f $^ - @test -f $@ || $(MAKE) $^ - - -# Programs - -gen_grid: gen_grid.F90 - $(FC) $(FCFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) - -gen_data: gen_data.F90 - $(FC) $(FCFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) - - -# Support - -.PHONY: clean -clean: - rm -rf $(OUT) gen_grid gen_data - -.PHONY: distclean -distclean: clean - rm -f config.log - rm -f config.status - rm -f Makefile - -.PHONY: ac-clean -ac-clean: distclean - rm -f aclocal.m4 - rm -rf autom4te.cache - rm -f configure - rm -f configure~