1 ################################################################################ 32 ################################################################################ 34 #------------------------------------------------------------------------------ 37 # Package Root Directory 40 # Bootstrap package within RN Make System 41 include $(RNMAKE_PKG_ROOT)/make/Bootstrap.mk
44 #------------------------------------------------------------------------------
50 #------------------------------------------------------------------------------
54 EXTRA_TGT_ALL_POST = all-python-post
55 EXTRA_TGT_DOC = doc-python
56 EXTRA_TGT_CLEAN = clean-python
57 EXTRA_TGT_DISTCLEAN = distclean-python
59 .PHONY: all-python-post
60 all-python-post: python-all
63 doc-python: python-doc
66 clean-python: python-clean
68 .PHONY: distclean-python
69 distclean-python: python-distclean
72 #------------------------------------------------------------------------------
73 # Include RNMAKE rules makefile(s)
75 # include top-level rules 76 include $(RNMAKE_ROOT)/Rules.mk
78 # include python rules
79 include $(rnmake)/Rules.python.mk