summaryrefslogtreecommitdiff
path: root/Examples
diff options
context:
space:
mode:
authorMike Romberg <mike-romberg@comcast.net>2016-06-03 17:30:01 -0600
committerMike Romberg <mike-romberg@comcast.net>2016-06-03 17:30:01 -0600
commitf102d587bc640a1ee628d5dfbe5840027f76e194 (patch)
treea748807d7c35ba3efc82f05bcf7b31188f9a3467 /Examples
parentf1aea15cf7562fe348e0a9653e02587f9ea1efd1 (diff)
downloadswig-f102d587bc640a1ee628d5dfbe5840027f76e194.tar.gz
copy everything with a .py extension into the build tree (creating dirs if needed)
Diffstat (limited to 'Examples')
-rw-r--r--Examples/python/import_packages/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Examples/python/import_packages/Makefile b/Examples/python/import_packages/Makefile
index bb6fb44fe..70683a795 100644
--- a/Examples/python/import_packages/Makefile
+++ b/Examples/python/import_packages/Makefile
@@ -11,13 +11,14 @@ import_packages_subdirs = \
relativeimport1 \
relativeimport2 \
relativeimport3 \
- split_modules
+ split_modules \
+ namespace_pkg
+
-# cd split_modules && $(MAKE) check
check: build
- echo "SRCDIR=$(SRCDIR)"
if test "x$(SRCDIR)" != x; then \
- for file in `cd $(SRCDIR) && find . -type f -name __init__.py`; do \
+ for file in `cd $(SRCDIR) && find . -type f -name "*.py"`; do \
+ mkdir -p `dirname $$file`; \
cp "${SRCDIR}$$file" "$$file" || exit 1; \
done; \
fi; \