netmsgs  1.2.2
RoadNarrows Robotics Network Messaging Package
Makefile
Go to the documentation of this file.
1 ################################################################################
2 #
3 # ./nmPython/src/Makefile
4 #
5 ifdef RNMAKE_DOXY
6 /*!
7 \file
8 
9 \brief The \h_netmsgs python module extensions makefile.
10 
11 RN Make System Specific Makefile
12 
13 \pkgsynopsis
14 RoadNarrows Robotics Network Messaging Package
15 
16 \pkgfile{nmPython/src/Makefile}
17 
18 \pkgauthor{Robin Knight,robin.knight@roadnarrows.com}
19 
20 \pkgcopyright{2010-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 # Extras
45 #
46 
47 EXTRA_TGT_ALL = all-extmod
48 #EXTRA_TGT_DEPS = all-extmod
49 EXTRA_TGT_CLEAN = clean-extmod
50 
51 
52 #------------------------------------------------------------------------------
53 # Extra make targets (place after Rules.mk)
54 
55 SWIG_FILES = NetMsgsCore.i
56 SWIG_EXTMOD_DIR = ../modules/NetMsgs
57 SWIG_EXTMOD_LIBS = -lrnr_netmsgs -lrnr
58 
59 all-extmod: swig-all
60 
61 # Clean extension module intermediates
62 clean-extmod: swig-clean
63 
64 
65 #------------------------------------------------------------------------------
66 # Include RNMAKE rules makefile(s)
67 
68 # Include top-levle rules
69 include $(RNMAKE_ROOT)/Rules.mk
70 
71 # Include swig rules (must be after top-level)
72 include $(rnmake)/Rules.swig.mk
73 
74 
75 ifdef RNMAKE_DOXY
76 /*! \endcond RNMAKE_DOXY */
77 endif
NetMsgs Base Data Module.
Definition: __init__.py:1