summaryrefslogtreecommitdiff
path: root/mnv/runtime/indent/testdir/make.in
diff options
context:
space:
mode:
Diffstat (limited to 'mnv/runtime/indent/testdir/make.in')
-rw-r--r--mnv/runtime/indent/testdir/make.in20
1 files changed, 20 insertions, 0 deletions
diff --git a/mnv/runtime/indent/testdir/make.in b/mnv/runtime/indent/testdir/make.in
new file mode 100644
index 0000000000..001c645476
--- /dev/null
+++ b/mnv/runtime/indent/testdir/make.in
@@ -0,0 +1,20 @@
+# mnv:ft=make
+# START_INDENT
+.POSIX :
+MAKEFLAGS += -rR
+
+.SUFFIXES: .F .f
+FC = f95
+FFLAGS =
+CPPFLAGS =
+
+.PHONY: help
+help:
+@echo indentation test
+
+.F.f:
+$(FC) $(CPPFLAGS) -E $< > $@
+
+.f.o:
+$(FC) $(FFLAGS) -c -o $@ $<
+# END_INDENT