Hekateros  3.4.3
RoadNarrows Robotics Robot Arm Project
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 \h_hek package software makefile.
10 
11 RN Make System Specific Makefile
12 
13 \pkgsynopsis
14 RoadNarrows Robotics \h_hek Robotic Arm Package
15 
16 \pkgfile{sw/Makefile}
17 
18 \pkgauthor{Robin Knight,robin.knight@roadnarrows.com}
19 \pkgauthor{Daniel Packard,daniel@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 # Subdirectories
46 
47 RNMAKE_SUBDIRS = \
48  libhekateros \
49  pyModules \
50  scripts \
51  apps
52 
53 # bsModules \
54 
55 
56 #------------------------------------------------------------------------------
57 # Include RNMAKE rules makefile(s)
58 
59 # include top-level rules
60 include $(RNMAKE_ROOT)/Rules.mk
61 
62 
63 ifdef RNMAKE_DOXY
64 /*! \endcond RNMAKE_DOXY */
65 endif