Kuon  1.1.3
RoadNarrows Robotics Large Outdoor Mobile Robot Project
Makefile
Go to the documentation of this file.
1 ################################################################################
2 #
3 # ./sw/libRS160D/Makefile
4 #
5 ifdef RNMAKE_DOXY
6 /*!
7 \file
8 
9 \brief The libRS160D library makefile.
10 
11 RN Make System Specific Makefile
12 
13 \pkgsynopsis
14 RoadNarrows Robotics \h_kuon Large Mobile Robot Package
15 
16 \pkgfile{sw/libRS160D/Makefile}
17 
18 \pkgauthor{Rob Shiely,rob@roadnarrows.com}
19 \pkgauthor{Robin Knight,robin.knight@roadnarrows.com}
20 
21 \pkgcopyright{2011-2018,RoadNarrows LLC,http://www.roadnarrows.com}
22 
23 \license{MIT}
24 
25 \EulaBegin
26 \EulaEnd
27 
28  * \cond RNMAKE_DOXY
29  */
30 endif
31 #
32 ################################################################################
33 
34 #------------------------------------------------------------------------------
35 # Required
36 
37 # Package Root Directory
38 RNMAKE_PKG_ROOT = ../..
39 
40 # Bootstrap package within RN Make System
41 include $(RNMAKE_PKG_ROOT)/make/Bootstrap.mk
42 
43 
44 #------------------------------------------------------------------------------
45 # Libraries
46 
47 # Distribution Static Libraries
48 RNMAKE_DIST_STLIBS = RS160D
49 
50 # Distribution Shared Libraries
51 RNMAKE_DIST_SHLIBS = RS160D
52 
53 # Source Files
54 RS160D.SRC.C = RS160DControl.c
55 
56 # Linked Libraries
57 RS160D.LIBS = rnr_serial rnr
58 
59 
60 #------------------------------------------------------------------------------
61 # Extras
62 
63 # Subpackage C PreProcessor Flags
64 EXTRA_CPPFLAGS = -DLOG -DLOGMOD="\"libRS160D\""
65 
66 
67 #------------------------------------------------------------------------------
68 # Include RNMAKE top-level rules makefile
69 
70 include $(RNMAKE_ROOT)/Rules.mk
71 
72 
73 ifdef RNMAKE_DOXY
74 /*! \endcond RNMAKE_DOXY */
75 endif