From 9bbf86dab4b125ea776f872ed31cb22affca703d Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Wed, 29 Jun 2022 08:30:09 -0400 Subject: [PATCH] Fix Makefile recursion and syntax References: * https://github.com/ucoProject/UCO/issues/389 Signed-off-by: Alex Nelson --- Makefile | 4 ++-- ontology/Makefile | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 67b4fe4d..d101ee70 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ check: \ .git_submodule_init.done.log \ .lib.done.log $(MAKE) \ - --directory ontology/uco \ + --directory ontology \ check $(MAKE) \ --directory tests \ @@ -53,7 +53,7 @@ clean: \ clean-ontology: @$(MAKE) \ - --directory ontology/uco \ + --directory ontology \ clean clean-tests: diff --git a/ontology/Makefile b/ontology/Makefile index 513b64d2..dcafc3fd 100644 --- a/ontology/Makefile +++ b/ontology/Makefile @@ -33,6 +33,7 @@ all-co: all-uco: $(MAKE) \ + --directory uco check: \ check-co \