|
From: Marcel T. <te...@us...> - 2004-10-25 12:50:14
|
Update of /cvsroot/openwince/tools/ibisa/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8193/src Modified Files: Makefile.owce Log Message: 2004-10-25 Marcel Telka <ma...@te...> * src/Makefile.owce (all): Added proj dependency. (proj): New target. * configure.ac (AC_INIT): Changed version number to 0.3.6. Index: Makefile.owce =================================================================== RCS file: /cvsroot/openwince/tools/ibisa/src/Makefile.owce,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Makefile.owce 11 Dec 2003 10:00:03 -0000 1.7 +++ Makefile.owce 25 Oct 2004 12:49:35 -0000 1.8 @@ -2,6 +2,7 @@ # $Id$ # # Copyright (C) 2003 ETC s.r.o. +# Copyright (C) 2004 Elcom s.r.o. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -18,10 +19,10 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. # -# Written by Marcel Telka <ma...@te...>, 2003. +# Written by Marcel Telka <ma...@te...>, 2003, 2004. # -all: cebuild buildrel img +all: proj cebuild buildrel img plat: export WINCEREL=1 ; \ @@ -32,6 +33,11 @@ [ "0$(_WINCEOSVER)" -gt "300" ] && sysgenplatform.bat '$(_TARGETPLATROOT)' postproc ; \ test ! -f `cygpath '$(_TARGETPLATROOT)'`/build.err +proj: + export _DEPTREES= ; \ + export MAKEFLAGS= ; \ + cebldtree.bat $(_TGTPROJ) -s -c > /dev/null + cebuild: export MAKEFLAGS= ; \ cebuild.bat -q -c |