1 ################################################################################ 31 ################################################################################ 33 #------------------------------------------------------------------------------ 36 # Package Root Directory 39 # Bootstrap package within RN Make System 40 include $(RNMAKE_PKG_ROOT)/make/Bootstrap.mk
43 #------------------------------------------------------------------------------
46 # Subdirectories to Build
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
60 .PHONY: all-python-post
61 all-python-post: python-all
64 doc-python: python-doc
67 clean-python: python-clean
69 .PHONY: distclean-python
70 distclean-python: python-distclean
73 #------------------------------------------------------------------------------
74 # Include RNMAKE rules makefile(s)
76 # Include top-level rules 77 include $(RNMAKE_ROOT)/Rules.mk
79 # Include python rules (must be after top-level)
80 include $(rnmake)/Rules.python.mk