1 ################################################################################ 3 # ./nmPython/src/Makefile 31 ################################################################################ 33 #------------------------------------------------------------------------------ 36 # Package Root Directory 37 RNMAKE_PKG_ROOT = ../..
39 # Bootstrap package within RN Make System 40 include $(RNMAKE_PKG_ROOT)/make/Bootstrap.mk
43 #------------------------------------------------------------------------------
47 EXTRA_TGT_ALL = all-extmod
48 #EXTRA_TGT_DEPS = all-extmod
49 EXTRA_TGT_CLEAN = clean-extmod
52 #------------------------------------------------------------------------------
53 # Extra make targets (place after Rules.mk)
55 SWIG_FILES = NetMsgsCore.i
56 SWIG_EXTMOD_DIR = ../modules/
NetMsgs 57 SWIG_EXTMOD_LIBS = -lrnr_netmsgs -lrnr
61 # Clean extension module intermediates 62 clean-extmod: swig-clean
65 #------------------------------------------------------------------------------ 66 # Include RNMAKE rules makefile(s) 68 # Include top-levle rules 69 include $(RNMAKE_ROOT)/Rules.mk
71 # Include swig rules (must be after top-level)
72 include $(rnmake)/Rules.swig.mk
NetMsgs Base Data Module.