From fa0b9eacbbe4252d263d95bca02987b54931a1cb Mon Sep 17 00:00:00 2001 From: "John S. Urban" Date: Sat, 10 Jun 2023 08:41:05 -0400 Subject: [PATCH 1/2] no CD/CI --- .github/workflows/{docs.yml => docs.yml.OFF} | 0 .../{test_intel_ubuntu.yml => test_intel_ubuntu.yml.OFF} | 0 ford.md | 1 - 3 files changed, 1 deletion(-) rename .github/workflows/{docs.yml => docs.yml.OFF} (100%) rename .github/workflows/{test_intel_ubuntu.yml => test_intel_ubuntu.yml.OFF} (100%) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml.OFF similarity index 100% rename from .github/workflows/docs.yml rename to .github/workflows/docs.yml.OFF diff --git a/.github/workflows/test_intel_ubuntu.yml b/.github/workflows/test_intel_ubuntu.yml.OFF similarity index 100% rename from .github/workflows/test_intel_ubuntu.yml rename to .github/workflows/test_intel_ubuntu.yml.OFF diff --git a/ford.md b/ford.md index a9d570b..a2788f1 100755 --- a/ford.md +++ b/ford.md @@ -1,7 +1,6 @@ --- src_dir: src app - example test output_dir: docs/fpm-ford project: hp From 55f8efc6f50c7a97100b89aa4a73b27f972d52e6 Mon Sep 17 00:00:00 2001 From: "John S. Urban" Date: Sat, 10 Jun 2023 08:48:35 -0400 Subject: [PATCH 2/2] cleanup --- GNUmakefile | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 GNUmakefile diff --git a/GNUmakefile b/GNUmakefile deleted file mode 100644 index b40cf0b..0000000 --- a/GNUmakefile +++ /dev/null @@ -1,49 +0,0 @@ -.PHONY: veryclean clean force export help - -ifdef debug -F_OPTS := -ggdb -endif - -F:= ifort - -SRC := rpn_stack.f90 rpn_stack_sm.f90 linked_list.f90 amap.f90 -OBJ := $(SRC:%.f90=%.o) - -hp: ../app/main.f90 $(OBJ) - $(F) -o $@ ../app/main.f90 $(OBJ) $(F_OPTS) - -hp.exe: /app/main.f90 GNUmakefile - $(F) -o $@ $< $(F_OPTS) - -rpn_stack_sm.o: rpn_stack_sm.f90 - $(F) -c -o $@ $< $(F_OPTS) - -rpn_stack.o: rpn_stack.f90 - $(F) -c -o $@ $< $(F_OPTS) - -linked_list.o: linked_list.f90 - $(F) -c -o $@ $< $(F_OPTS) - -amap.o: amap.f90 - $(F) -c -o $@ $< $(F_OPTS) - -test_amap: ../test/test_amap.f90 amap.o - $(F) -o $@ ../test/test_amap.f90 amap.o - -clean: - @rm -vf *.o *.mod *.smod *~ - -veryclean: clean - @rm -vf hp hp.exe hp.tar - -force: veryclean - $(MAKE) - -export: hp.tar - -hp.tar: GNUmakefile ../app/hp.f90 $(SRC) - tar cf $@ ../app/hp.f90 $(SRC) GNUmakefile - -help: - @echo "SRC = $(SRC)" - @echo "OBJ = $(OBJ)"