From: Francesco M. <fr...@us...> - 2006-02-03 15:43:03
|
Update of /cvsroot/wxlua/wxLua/modules/build/bakefiles In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20651/modules/build/bakefiles Modified Files: modules.bkl Log Message: Added install rules for wxBind sources and makefiles Index: modules.bkl =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/build/bakefiles/modules.bkl,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** modules.bkl 2 Feb 2006 23:02:29 -0000 1.18 --- modules.bkl 3 Feb 2006 15:42:54 -0000 1.19 *************** *** 131,133 **** --- 131,153 ---- </set> + + <!-- Additionally, we need also to install wxBind's sources and the makefiles to compile + it in case some other app want to extend them... (see modules/wxbind/build/wxbindcustom.bkl) + --> + <if cond="TARGETING_UNIX=='1'"> + + <copy-files id="wxbindsrc"> + <dependency-of>install</dependency-of> + <srcdir>$(top_srcdir)/modules</srcdir> + <dstdir>$(INCLUDEDIR)/wxbind/src</dstdir> + <files>$(WXBIND_SRC)</files> + </copy-files> + <copy-files id="wxbindmake"> + <dependency-of>install</dependency-of> + <srcdir>$(top_srcdir)/modules</srcdir> + <dstdir>$(INCLUDEDIR)/wxbind/build</dstdir> + <files>$(fileList('wxbind/build/makefile*'))</files> + </copy-files> + </if> + </makefile> |