1 ################################################################################ 3 # ./sw/pyModules/Makefile 31 ################################################################################ 33 #------------------------------------------------------------------------------ 36 # Package Root Directory 37 RNMAKE_PKG_ROOT = ../..
39 # Bootstrap package within RN Make System 40 include $(RNMAKE_PKG_ROOT)/make/Bootstrap.mk
43 #------------------------------------------------------------------------------
49 #------------------------------------------------------------------------------
52 EXTRA_TGT_ALL_POST = all-python-post
53 EXTRA_TGT_DOC = doc-python
54 EXTRA_TGT_CLEAN = clean-python
55 EXTRA_TGT_DISTCLEAN = distclean-python
57 .PHONY: all-python-post
58 all-python-post: python-all
61 doc-python: python-doc
64 clean-python: python-clean
66 .PHONY: distclean-python
67 distclean-python: python-distclean
70 #------------------------------------------------------------------------------
71 # Include RNMAKE rules makefile(s)
73 # include top-level rules 74 include $(RNMAKE_ROOT)/Rules.mk
76 # include python rules
77 include $(RNMAKE_ROOT)/Rules.python.mk