peripherals  1.4.2
RoadNarrows Robotics Hardware Peripherals Package
Makefile
Go to the documentation of this file.
1 ################################################################################
2 #
3 # ./sw//Makefile
4 #
5 ifdef RNMAKE_DOXY
6 /*!
7 \file
8 
9 \brief The pheripherals package software makefile.
10 
11 RN Make System Specific Makefile
12 
13 \pkgsynopsis
14 RoadNarrows Robotics Peripherals C++ Package
15 
16 \pkgfile{sw//Makefile}
17 
18 \pkgauthor{Robin Knight,robin.knight@roadnarrows.com}
19 \pkgauthor{Daniel Packard,daniel@roadnarrows.com}
20 \pkgauthor{Rob Shiely,rob@roadnarrows.com}
21 
22 \pkgcopyright{2012-2018,RoadNarrows LLC,http://www.roadnarrows.com}
23 
24 \license{MIT}
25 
26 \EulaBegin
27 \EulaEnd
28 
29  * \cond RNMAKE_DOXY
30  */
31 endif
32 #
33 ################################################################################
34 
35 #------------------------------------------------------------------------------
36 # Required
37 
38 # Package Root Directory
39 RNMAKE_PKG_ROOT = ..
40 
41 # Bootstrap package within RN Make System
42 include $(RNMAKE_PKG_ROOT)/make/Bootstrap.mk
43 
44 
45 #------------------------------------------------------------------------------
46 # Subdirectories
47 
48 RNMAKE_SUBDIRS = libhid libimu libmot apps
49 
50 
51 #------------------------------------------------------------------------------
52 # Include RNMAKE rules makefile(s)
53 
54 # include top-level rules
55 include $(RNMAKE_ROOT)/Rules.mk
56 
57 
58 ifdef RNMAKE_DOXY
59 /*! \endcond RNMAKE_DOXY */
60 endif