From: John L. <jr...@us...> - 2007-08-06 01:46:36
|
Update of /cvsroot/wxlua/wxLua/bindings In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv28184/wxLua/bindings Modified Files: Makefile genwxbind.lua Log Message: Add wx_datatypes.lua file for use with external bindings Index: Makefile =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/Makefile,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Makefile 16 Jul 2007 19:34:13 -0000 1.6 --- Makefile 6 Aug 2007 01:46:32 -0000 1.7 *************** *** 18,22 **** # These have to be in order of their dependencies ! all: wxbase wxcore wxadv wxaui wxgl wxhtml wxnet wxmedia wxstc wxxml wxxrc wxrichtext wxlua wxluasocket wxluacan --- 18,22 ---- # These have to be in order of their dependencies ! all: wxbase wxcore wxadv wxaui wxgl wxhtml wxnet wxmedia wxstc wxxml wxxrc wxrichtext wxlua wxluasocket wxluacan wxdatatypes *************** *** 78,81 **** --- 78,87 ---- @($(LUA) -e"rulesFilename=\"wxluasocket/wxluasocket_rules.lua\"" genwxbind.lua) + + wxdatatypes: + @echo Building wx DataTypes + @($(LUA) -e"rulesFilename=\"wxwidgets/wxdatatypes_rules.lua\"" genwxbind.lua) + + wxluacan: @echo "Building wxLuaCan (ps. did you forget to run make -B)" Index: genwxbind.lua =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/genwxbind.lua,v retrieving revision 1.146 retrieving revision 1.147 diff -C2 -d -r1.146 -r1.147 *** genwxbind.lua 1 Aug 2007 19:15:30 -0000 1.146 --- genwxbind.lua 6 Aug 2007 01:46:32 -0000 1.147 *************** *** 4896,4901 **** end ! local interfaceList = GenerateInterfaceData() ! WriteWrapperFiles(interfaceList) -- Write out the data types for these interface files --- 4896,4903 ---- end ! if #interface_fileTable > 0 then ! local interfaceList = GenerateInterfaceData() ! WriteWrapperFiles(interfaceList) ! end -- Write out the data types for these interface files |