summaryrefslogtreecommitdiff
path: root/Examples/python/import_packages/relativeimport2/py3/pkg2/pkg3/pkg4/Makefile
blob: a98d311228624468f9b1a2b6e5a2b987318f27f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
TOP        = ../../../../../../..
SWIG       = $(realpath $(TOP)/../preinst-swig)
SWIGOPT    =
LIBS       =

build:
	$(MAKE) -f $(TOP)/Makefile SWIG='$(SWIG)' SWIGOPT='$(SWIGOPT)' \
	LIBS='$(LIBS)' TARGET='foo' INTERFACE='foo.i' python_cpp

static:
	$(MAKE) -f $(TOP)/Makefile SWIG='$(SWIG)' SWIGOPT='$(SWIGOPT)' \
	LIBS='$(LIBS)' TARGET='foo' INTERFACE='foo.i' python_cpp_static

clean:
	$(MAKE) -f $(TOP)/Makefile TARGET='foo' python_clean