Laelaps  2.3.5
RoadNarrows Robotics Small Outdoor Mobile Robot Project
Makefile
Go to the documentation of this file.
1 ################################################################################
2 #
3 # ./sw/pyModules/src/Makefile
4 #
5 ifdef RNMAKE_DOXY
6 /*!
7 \file
8 
9 \brief The \h_laelaps python modules source makefile.
10 
11 RN Make System Specific Makefile
12 
13 \pkgsynopsis
14 RoadNarrows Robotics \h_laelaps Small Mobile Robot Package
15 
16 \pkgfile{sw/pyModules/src/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 # Extras
44 #
45 
46 EXTRA_TGT_ALL = all-extmod
47 EXTRA_TGT_CLEAN = clean-extmod
48 
49 SWIG_FILES = WatchDogMsgs.i RoboClawMsgs.i ImuMspMsgs.i
50 SWIG_EXTMOD_DIR = ../modules/Laelaps
51 SWIG_EXTMOD_LIBS = -llaelaps -lrnr
52 
53 all-extmod: swig-all
54 
55 # Clean extension module intermediates
56 clean-extmod: swig-clean
57 
58 
59 #------------------------------------------------------------------------------
60 # Include RNMAKE rules makefile(s)
61 
62 # include top-level rules
63 include $(RNMAKE_ROOT)/Rules.mk
64 
65 # include swig rules
66 include $(RNMAKE_ROOT)/Rules.swig.mk
67 
68 
69 ifdef RNMAKE_DOXY
70 /*! \endcond RNMAKE_DOXY */
71 endif
Laelaps client python modules.
Definition: __init__.py:1