Dynamixel  2.9.5
RoadNarrows Robotics Dynamixel Package
Makefile
Go to the documentation of this file.
1 ################################################################################
2 #
3 # ./examples/botsensetest/Makefile
4 #
5 ifdef RNMAKE_DOXY
6 /*!
7 \file
8 
9 \brief The botsensetest example application makefile.
10 
11 RN Make System Specific Makefile
12 
13 \pkgsynopsis
14 RoadNarrows Robotics \h_dynamixel Package
15 
16 \pkgfile{examples/botsensetest/Makefile}
17 
18 \pkgauthor{Robin Knight,robin.knight@roadnarrows.com}
19 
20 \pkgcopyright{2011-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 # Programs
45 
46 RNMAKE_DIST_PGMS = botsensetest
47 
48 READLINE_LIBS = readline ncurses pthread
49 READLINE_CPPFLAGS = -DHAVE_READLINE
50 
51 # Target library subdirectory
52 botsense.SUBDIR = rnr
53 
54 # Libraries to Link With
55 botsensetest.LIBS = \
56  rnr_dynamixel rnr_dxl bsclient_dyna rnr_netmsgs botsense rnr \
57  stdc++ $(READLINE_LIBS) gsl gslcblas m
58 
59 botsensetest.LIBDEPS = rnr_dynamixel rnr_dxl bsclient_dyna
60 
61 # Source Files
62 botsensetest.SRC.CXX = botsensetest.cxx
63 
64 
65 #------------------------------------------------------------------------------
66 # Extras
67 
68 # Subpackage C PreProcessor Flags
69 EXTRA_CPPFLAGS = -DHAVE_READLINE -DLOG -DLOGMOD="\"botsensetest\""
70 
71 
72 #------------------------------------------------------------------------------
73 # Include RNMAKE rules makefile(s)
74 
75 # include top-level rules
76 include $(RNMAKE_ROOT)/Rules.mk
77 
78 
79 ifdef RNMAKE_DOXY
80 /*! \endcond RNMAKE_DOXY */
81 endif