summaryrefslogtreecommitdiff
path: root/Examples/python/import_packages/same_modnames1/pkg1/Makefile
blob: 9b51a76edf075fd6c14ea50275fc33df4f264a5a (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