From: <ped...@us...> - 2007-02-04 23:22:29
|
Revision: 883 http://svn.sourceforge.net/cegcc/?rev=883&view=rev Author: pedroalves Date: 2007-02-04 15:22:28 -0800 (Sun, 04 Feb 2007) Log Message: ----------- * libce/Makefile.in (inst_includedir, inst_libdir): Set them correctly for *wince* cases. Modified Paths: -------------- trunk/cegcc/src/w32api/ChangeLog.ce trunk/cegcc/src/w32api/libce/Makefile.in Modified: trunk/cegcc/src/w32api/ChangeLog.ce =================================================================== --- trunk/cegcc/src/w32api/ChangeLog.ce 2007-02-04 20:08:25 UTC (rev 882) +++ trunk/cegcc/src/w32api/ChangeLog.ce 2007-02-04 23:22:28 UTC (rev 883) @@ -1,3 +1,8 @@ +2007-02-04 Pedro Alves <ped...@po...> + + * libce/Makefile.in (inst_includedir, inst_libdir): Set them + correctly for *wince* cases. + 2007-02-01 Nuno Lucas <nt...@gm...> * include/todaycmn.h : Create this file based on MSDN documentation Modified: trunk/cegcc/src/w32api/libce/Makefile.in =================================================================== --- trunk/cegcc/src/w32api/libce/Makefile.in 2007-02-04 20:08:25 UTC (rev 882) +++ trunk/cegcc/src/w32api/libce/Makefile.in 2007-02-04 23:22:28 UTC (rev 883) @@ -43,9 +43,14 @@ inst_includedir:=$(tooldir)/include/w32api inst_libdir:=$(tooldir)/lib/w32api else +ifneq (,$(findstring wince,$(target_alias))) +inst_includedir:=$(tooldir)/include +inst_libdir:=$(tooldir)/lib +else inst_includedir:=$(includedir) inst_libdir:=$(libdir) endif +endif INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |