botsense  3.2.0
RoadNarrows Client-Server Proxied Services Framework
Makefile
Go to the documentation of this file.
1 ################################################################################
2 #
3 # ./bsModules/Makefile
4 #
5 ifdef RNMAKE_DOXY
6 /*!
7 \file
8 
9 \brief \h_botsense server and client plug-in modules makefile.
10 
11 Each module has a bsProxy dynamically linked server plug-in, client C/C++
12 library, and python modules.
13 
14 RN Make System Specific Makefile
15 
16 \pkgsynopsis
17 RoadNarrows Robotics \h_botsense Client-Server Proxied Services Framework
18 
19 \pkgfile{bsModules/Makefile}
20 
21 \pkgauthor{Robin Knight,robin.knight@roadnarrows.com}
22 
23 \pkgcopyright{2010-2018,RoadNarrows LLC,http://www.roadnarrows.com}
24 
25 \license{MIT}
26 
27 \EulaBegin
28 \EulaEnd
29 
30  * \cond RNMAKE_DOXY
31  */
32 endif
33 #
34 ################################################################################
35 
36 #------------------------------------------------------------------------------
37 # Required
38 
39 # Package Root Directory
40 RNMAKE_PKG_ROOT = ..
41 
42 # Bootstrap package within RN Make System
43 include $(RNMAKE_PKG_ROOT)/make/Bootstrap.mk
44 
45 
46 #------------------------------------------------------------------------------
47 # Subdirectories
48 
49 RNMAKE_SUBDIRS = bsSerial bsI2C bsNull
50 
51 
52 #------------------------------------------------------------------------------
53 # Include RNMAKE rules makefile(s)
54 
55 # include top-level rules
56 include $(RNMAKE_ROOT)/Rules.mk
57 
58 
59 ifdef RNMAKE_DOXY
60 /*! \endcond RNMAKE_DOXY */
61 endif