1 ################################################################################ 31 ################################################################################ 33 #------------------------------------------------------------------------------ 36 # Package Root Directory 39 # Bootstrap package within RN Make System 40 include $(RNMAKE_PKG_ROOT)/make/Bootstrap.mk
43 #------------------------------------------------------------------------------
49 #------------------------------------------------------------------------------
53 EXTRA_TGT_ALL_POST = all-python-post
54 EXTRA_TGT_DOC = doc-python
55 EXTRA_TGT_CLEAN = clean-python
56 EXTRA_TGT_DISTCLEAN = distclean-python
58 .PHONY: all-python-post
59 all-python-post: python-all
62 doc-python: python-doc
65 clean-python: python-clean
67 .PHONY: distclean-python
68 distclean-python: python-distclean
71 #------------------------------------------------------------------------------
72 # Include RNMAKE rules makefile(s)
74 # include top-level rules 75 include $(RNMAKE_ROOT)/Rules.mk
77 # include python rules
78 include $(rnmake)/Rules.python.mk