botsense  3.2.0
RoadNarrows Client-Server Proxied Services Framework
Makefile
Go to the documentation of this file.
1 ################################################################################
2 #
3 # ./bsPython/src/Makefile
4 #
5 ifdef RNMAKE_DOXY
6 /*!
7 \file
8 
9 \brief \h_botsense python module extensions makefile.
10 
11 RN Make System Specific Makefile
12 
13 \pkgsynopsis
14 RoadNarrows Robotics \h_botsense Client-Server Proxied Services Framework
15 
16 \pkgfile{bsPython/src/Makefile}
17 
18 \pkgauthor{Robin Knight,robin.knight@roadnarrows.com}
19 
20 \pkgcopyright{2010-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 # Extras
45 #
46 
47 EXTRA_TGT_ALL = all-extmod
48 EXTRA_TGT_CLEAN = clean-extmod
49 
50 SWIG_FILES = BotSenseCore.i
51 SWIG_EXTMOD_DIR = ../modules/BotSense
52 SWIG_EXTMOD_LIBS = -lbotsense -lrnr_netmsgs -lrnr
53 
54 all-extmod: swig-all
55 
56 # Clean extension module intermediates
57 clean-extmod: swig-clean
58 
59 
60 #------------------------------------------------------------------------------
61 # Include RNMAKE rules makefile(s)
62 
63 # include top-level rules
64 include $(RNMAKE_ROOT)/Rules.mk
65 
66 # include swig rules
67 include $(rnmake)/Rules.swig.mk
68 
69 
70 ifdef RNMAKE_DOXY
71 /*! \endcond RNMAKE_DOXY */
72 endif
BotSense Client Core.
Definition: __init__.py:1