Tests/Examples for the use case of splitting the wrapper.
Half of the wrapper in a package and 1/2 is global.
This commit is contained in:
parent
260501c45f
commit
3a459b3f27
24 changed files with 208 additions and 0 deletions
25
Examples/python/import_packages/split_wrapper/Makefile
Normal file
25
Examples/python/import_packages/split_wrapper/Makefile
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
TOP = ../../..
|
||||
LIBS =
|
||||
|
||||
subdirs = builtin vanilla builtin_split vanilla_split
|
||||
|
||||
check: build
|
||||
for s in $(subdirs); do \
|
||||
(cd $$s && $(MAKE) check); \
|
||||
done
|
||||
|
||||
build:
|
||||
for s in $(subdirs); do \
|
||||
(cd $$s && $(MAKE) SWIGOPT='$(SWIGOPT)' LIBS='$(LIBS)' build); \
|
||||
done
|
||||
|
||||
static:
|
||||
for s in $(subdirs); do \
|
||||
(cd $$s && $(MAKE) SWIGOPT='$(SWIGOPT)' LIBS='$(LIBS)' static); \
|
||||
done
|
||||
|
||||
clean:
|
||||
$(MAKE) -f $(TOP)/Makefile SRCDIR='$(SRCDIR)' python_clean
|
||||
for s in $(subdirs); do \
|
||||
(cd $$s && $(MAKE) clean); \
|
||||
done
|
||||
Loading…
Add table
Add a link
Reference in a new issue