PageRenderTime 35ms CodeModel.GetById 30ms app.highlight 4ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/rel-1.3.35/Examples/python/import_template/Makefile

#
Makefile | 21 lines | 17 code | 4 blank | 0 comment | 0 complexity | 55a579fa1d78265401d55782be1cd83f MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
 1TOP        = ../..
 2SWIG       = $(TOP)/../preinst-swig
 3SWIGOPT    =
 4LIBS       =
 5
 6all::
 7	$(MAKE) -f $(TOP)/Makefile SWIG='$(SWIG)' SWIGOPT='$(SWIGOPT)' \
 8	LIBS='$(LIBS)' TARGET='base' INTERFACE='base.i' python_cpp
 9	$(MAKE) -f $(TOP)/Makefile SWIG='$(SWIG)' SWIGOPT='$(SWIGOPT)' \
10	LIBS='$(LIBS)' TARGET='foo' INTERFACE='foo.i' python_cpp
11	$(MAKE) -f $(TOP)/Makefile SWIG='$(SWIG)' SWIGOPT='$(SWIGOPT)' \
12	LIBS='$(LIBS)' TARGET='bar' INTERFACE='bar.i' python_cpp
13	$(MAKE) -f $(TOP)/Makefile SWIG='$(SWIG)' SWIGOPT='$(SWIGOPT)' \
14	LIBS='$(LIBS)' TARGET='spam' INTERFACE='spam.i' python_cpp
15
16
17clean::
18	$(MAKE) -f $(TOP)/Makefile python_clean
19	@rm -f foo.py bar.py spam.py base.py
20
21check: all