Kuon  1.1.3
RoadNarrows Robotics Large Outdoor Mobile Robot Project
Makefile
Go to the documentation of this file.
1 ################################################################################
2 #
3 # ./sw/libRS160D/tests/Makefile
4 #
5 ifdef RNMAKE_DOXY
6 /*!
7 \file
8 
9 \brief Library libRS160D unit tests 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/tests/Makefile}
17 
18 \pkgauthor{Rob Shiely,rob@roadnarrows.com}
19 
20 \pkgcopyright{2012-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 # Distribution Programs
47 RNMAKE_TEST_PGMS = QikMove
48 
49 # Linked Libraries
50 TEST_PGMS_LIBS = rnr qik serial
51 
52 QikMove.LIBS = $(TEST_PGMS_LIBS)
53 
54 # C++ Source Files
55 QikMove.SRC.C = QikMove.c
56 
57 
58 #------------------------------------------------------------------------------
59 # Extras
60 
61 # Subpackage C PreProcessor Flags
62 EXTRA_CPPFLAGS = -DLOG -DLOGMOD="\"libQik\""
63 
64 
65 #------------------------------------------------------------------------------
66 # Include RNMAKE top-level rules makefile
67 
68 include $(RNMAKE_ROOT)/Rules.mk
69 
70 
71 ifdef RNMAKE_DOXY
72 /*! \endcond RNMAKE_DOXY */
73 endif