From 69226098f3faf554ebb774da76ae41b94a091610 Mon Sep 17 00:00:00 2001 From: Ed Hartnett Date: Mon, 22 Jul 2019 10:53:30 -0600 Subject: [PATCH] fixed example Makefile.am for C only builds --- examples/Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples/Makefile.am b/examples/Makefile.am index bc805a1b369..669e3639beb 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -2,4 +2,8 @@ # Ed Hartnett -SUBDIRS = c f03 +if BUILD_FORTRAN +F03 = f03 +endif # BUILD_FORTRAN + +SUBDIRS = c F03