From 20665786bd8848fbe5f970e67549ce390a0ed7fb Mon Sep 17 00:00:00 2001
From: Timm Fitschen <t.fitschen@indiscale.com>
Date: Mon, 15 Nov 2021 17:31:57 +0100
Subject: [PATCH] ENH: copy everything in src/ext/include/ to public/ on make
 install

---
 Makefile | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Makefile b/Makefile
index 4c64a38d..4e9f37b9 100644
--- a/Makefile
+++ b/Makefile
@@ -176,6 +176,9 @@ cp-ext:
 	for f in $(wildcard $(SRC_EXT_DIR)/xsl/*) ; do \
 		echo "y" | $(CMD_COPY_EXT_FILES) "$$(realpath "$$f")" $(PUBLIC_DIR)/xsl/ ; \
 	done
+	for f in $(wildcard $(SRC_EXT_DIR)/include/*) ; do \
+		echo "y" | $(CMD_COPY_EXT_FILES) "$$(realpath "$$f")" "$(PUBLIC_DIR)/$$(basename "$$f")" ; \
+	done
 
 cp-ext-test:
 	for f in $(wildcard $(TEST_EXT_DIR)/js/*) ; do \
-- 
GitLab