Remove realpath from python/import_packages example

This commit is contained in:
William S Fulton 2015-08-20 06:17:21 +01:00
commit 4ef3507e8b
51 changed files with 100 additions and 133 deletions

View file

@ -1,5 +1,4 @@
TOP = ../..
SWIG = $(realpath $(TOP)/../preinst-swig)
SWIGOPT =
LIBS =
@ -25,12 +24,12 @@ check: build
build:
for s in $(import_packages_subdirs); do \
(cd $$s && $(MAKE) SWIG='$(SWIG)' SWIGOPT='$(SWIGOPT)' LIBS='$(LIBS)' build); \
(cd $$s && $(MAKE) SWIGOPT='$(SWIGOPT)' LIBS='$(LIBS)' build); \
done
static:
for s in $(import_packages_subdirs); do \
(cd $$s && $(MAKE) SWIG='$(SWIG)' SWIGOPT='$(SWIGOPT)' LIBS='$(LIBS)' static); \
(cd $$s && $(MAKE) SWIGOPT='$(SWIGOPT)' LIBS='$(LIBS)' static); \
done
clean: