Hekateros  3.4.3
RoadNarrows Robotics Robot Arm Project
Makefile
Go to the documentation of this file.
1 ################################################################################
2 #
3 # ./examples/Makefile
4 #
5 ifdef RNMAKE_DOXY
6 /*!
7 \file
8 
9 \brief The \h_hek examples makefile.
10 
11 RN Make System Specific Makefile
12 
13 \pkgsynopsis
14 RoadNarrows Robotics \h_hek Robotic Arm Package
15 
16 \pkgfile{examples/Makefile}
17 
18 \pkgauthor{Robin Knight,robin.knight@roadnarrows.com}
19 
20 \pkgcopyright{2013-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 # Subdirectories
45 # Subdirectories to Build
46 
47 RNMAKE_SUBDIRS =
48 
49 
50 #------------------------------------------------------------------------------
51 # Include RNMAKE rules makefile(s)
52 
53 # include top-level rules
54 include $(RNMAKE_ROOT)/Rules.mk
55 
56 
57 ifdef RNMAKE_DOXY
58 /*! \endcond RNMAKE_DOXY */
59 endif