i2c  1.4.2
RoadNarrows Robotics I2C Package
Makefile
Go to the documentation of this file.
1 ################################################################################
2 #
3 # ./pyModules/Makefile
4 #
5 ifdef RNMAKE_DOXY
6 /*!
7 \file
8 
9 \brief The \h_i2c python modules, extension modules, and scripts makefile.
10 
11 An rnmake system package specific makefile.
12 
13 \pkgsynopsis
14 RoadNarrows \h_i2c Package
15 
16 \pkgfile{pyModules/Makefile}
17 
18 \pkgauthor{Robin Knight,robin.knight@roadnarrows.com}
19 
20 \pkgcopyright{2016-2018,RoadNarrows LLC,http://www.roadnarrows.com}
21 
22 \license{MIT}
23 
24 \EulaBegin
25 \EulaEnd
26 
27  * \cond RNMAKE_DOXY
28  */
29 endif
30 #
31 ################################################################################
32 
33 #------------------------------------------------------------------------------
34 # Required
35 
36 # Package Root Directory
37 RNMAKE_PKG_ROOT = ..
38 
39 # Bootstrap package within RN Make System
40 include $(RNMAKE_PKG_ROOT)/make/Bootstrap.mk
41 
42 
43 #------------------------------------------------------------------------------
44 # Subdirectories
45 
46 RNMAKE_SUBDIRS = src
47 
48 
49 #------------------------------------------------------------------------------
50 # Extras
51 #
52 
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
57 
58 .PHONY: all-python-post
59 all-python-post: python-all
60 
61 .PHONY: doc-python
62 doc-python: python-doc
63 
64 .PHONY: clean-python
65 clean-python: python-clean
66 
67 .PHONY: distclean-python
68 distclean-python: python-distclean
69 
70 
71 #------------------------------------------------------------------------------
72 # Include RNMAKE rules makefiles
73 
74 # Include top-level rules
75 include $(RNMAKE_ROOT)/Rules.mk
76 
77 # Include python rules (after top-level rules)
78 include $(RNMAKE_ROOT)/Rules.python.mk
79 
80 
81 ifdef RNMAKE_DOXY
82 /*! \endcond RNMAKE_DOXY */
83 endif
string RNMAKE_PKG_ROOT
RN Package Root Directory (not python package)
Definition: setup.py:54