From 0ec55f352cf3941e276e189d21923b10bbcab368 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Sat, 18 Mar 2023 17:07:44 +0100 Subject: [PATCH] always build Python interface if possible That is, if the Python interface can be built, then build it as part of "make all" and not just as part of "make check". The C++ interfaces are already built as part of "make all" because they are needed to build the C++ test programs, while the Python interface is only need to run the Python test program. Building the Python interface as part or "make all" prepares for storing the interfaces in the git repository. Signed-off-by: Sven Verdoolaege --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index e4648d6c..4f8ddb37 100644 --- a/Makefile.am +++ b/Makefile.am @@ -495,9 +495,10 @@ if HAVE_CXX11 include/isl/cpp-checked.h \ include/isl/cpp-checked-conversion.h \ include/isl/typed_cpp.h + INTERFACES = $(CPP_INTERFACES) interface/isl.py endif endif -BUILT_SOURCES = gitversion.h $(CPP_INTERFACES) +BUILT_SOURCES = gitversion.h $(INTERFACES) CLEANFILES = \ gitversion.h \ interface/isldlname.py \ -- 2.11.4.GIT