summaryrefslogtreecommitdiff
path: root/Examples/python
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2018-01-06 23:19:04 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2018-01-06 23:19:04 +0000
commit3066f8950c0dacdadec2c0119d0d7042a8f7e221 (patch)
tree97ddd46ed5a6b8e14150a85cf5a70e950dafa4be /Examples/python
parentb0c910ac96c56a11a140ec24fbf12c976d43ebff (diff)
downloadswig-3066f8950c0dacdadec2c0119d0d7042a8f7e221.tar.gz
Minor tweaks in import_packages Makefile
Diffstat (limited to 'Examples/python')
-rw-r--r--Examples/python/import_packages/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Examples/python/import_packages/Makefile b/Examples/python/import_packages/Makefile
index e6c07fe75..2857866d4 100644
--- a/Examples/python/import_packages/Makefile
+++ b/Examples/python/import_packages/Makefile
@@ -12,7 +12,7 @@ import_packages_subdirs = \
relativeimport2 \
relativeimport3 \
split_modules \
- namespace_pkg
+ namespace_pkg \
check: build
@@ -21,7 +21,7 @@ check: build
mkdir -p `dirname $$file`; \
cp "${SRCDIR}$$file" "$$file" || exit 1; \
done; \
- fi; \
+ fi
for s in $(import_packages_subdirs); do \
(cd $$s && $(MAKE) check) || exit 1; \
done
@@ -42,7 +42,7 @@ clean:
for file in `cd $(SRCDIR) && find . -type f -name "*.py"`; do \
rm -f "$$file" || exit 1; \
done; \
- fi; \
+ fi
for s in $(import_packages_subdirs); do \
(cd $$s && $(MAKE) clean) || exit 1; \
done