From 4aa2b4173cab30db3620c343cc6f859954f11659 Mon Sep 17 00:00:00 2001 From: lcsmuller Date: Fri, 7 Jan 2022 17:26:21 -0300 Subject: [PATCH] fix(Makefile:docs): dir dependencies --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 5f330429b..312778d95 100644 --- a/Makefile +++ b/Makefile @@ -129,11 +129,11 @@ docs: $(COGUTILS_DIR) | $(H_SPECS_DIR) @ $(MAKE) -C $(SPECS_DIR) gen_headers @ mv $(SPECS_DIR)/specs-code/discord/*.h $(H_SPECS_DIR) -$(H_SPECS_DIR): | $(CCORDDOCS_DIR) +$(H_SPECS_DIR): | $(C_SPECS_DIR) @ mkdir -p $@ -$(CCORDDOCS_DIR): | $(COGUTILS_DIR) - git clone https://github.com/cogmasters/concord-docs $(CCORDDOCS_DIR) +$(CCORDDOCS_DIR): + git clone https://github.com/cogmasters/concord-docs $@ cp $@/Doxyfile Doxyfile .PHONY: all test examples install echo clean purge docs