|
From: Marcel T. <te...@us...> - 2005-06-28 05:05:36
|
Update of /cvsroot/openwince/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10020 Modified Files: .cvsignore ChangeLog Makefile.am README configure.ac Log Message: 2005-06-28 Marcel Telka <ma...@te...> * Makefile.am: Enabled installation for Hitachi Workbench. * configure.ac: Ditto. Index: README =================================================================== RCS file: /cvsroot/openwince/include/README,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- README 3 Sep 2003 16:42:42 -0000 1.1 +++ README 28 Jun 2005 05:05:23 -0000 1.2 @@ -21,3 +21,12 @@ 2. Run ./configure script. 3. Run `make`. 4. Run `make install`. + + +Notes for Hitachi Workbench users +--------------------------------- + +You should use following parameters for the ./configure script: + --with-hwbench=PATH_TO_HWBENCH --host=hwbench +for example + --with-hwbench=/cygdrive/c/hwbench --host=hwbench Index: .cvsignore =================================================================== RCS file: /cvsroot/openwince/include/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- .cvsignore 30 Jul 2003 09:10:00 -0000 1.3 +++ .cvsignore 28 Jun 2005 05:05:23 -0000 1.4 @@ -7,3 +7,5 @@ configure owce-stdint.h stdint.h +aconftest.s20 +econftest.s20 Index: configure.ac =================================================================== RCS file: /cvsroot/openwince/include/configure.ac,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- configure.ac 27 Jun 2005 15:20:34 -0000 1.11 +++ configure.ac 28 Jun 2005 05:05:23 -0000 1.12 @@ -70,5 +70,8 @@ fi ]) AM_CONDITIONAL( GENERATE_STDINT_H, test "$generate_stdint_h" = "yes" ) +AM_CONDITIONAL( HAVE_HWBENCH, test "$hwbench_path" != "no" ) +HWBENCH_PATH="$hwbench_path" +AC_SUBST( HWBENCH_PATH ) AC_OUTPUT Index: Makefile.am =================================================================== RCS file: /cvsroot/openwince/include/Makefile.am,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- Makefile.am 27 Jun 2005 22:24:28 -0000 1.33 +++ Makefile.am 28 Jun 2005 05:05:23 -0000 1.34 @@ -30,7 +30,11 @@ # Written by Marcel Telka <ma...@te...>, 2002. # +if HAVE_HWBENCH +openwinceincdir = @HWBENCH_PATH@/IAR/INC/openwince +else openwinceincdir = $(includedir)/openwince +endif nobase_openwinceinc_HEADERS = \ common.h \ @@ -119,14 +123,18 @@ stdint/stdint-hwbench.h \ stdint/stdint-win32.h -nodist_openwinceinc_HEADERS = \ - owce-stdint.h - if GENERATE_STDINT_H -nodist_openwinceinc_HEADERS += stdint.h +nodist_openwinceinc_HEADERS = stdint.h + +stdint.h: owce-stdint.h + cp $< $@ endif -stdint.h: - echo "#include <owce-stdint.h>" > stdint.h +if HAVE_HWBENCH +nodist_openwinceinc_HEADERS = stdint.h + +stdint.h: stdint/stdint-hwbench.h + cp $< $@ +endif CLEANFILES = stdint.h Index: ChangeLog =================================================================== RCS file: /cvsroot/openwince/include/ChangeLog,v retrieving revision 1.78 retrieving revision 1.79 diff -u -d -r1.78 -r1.79 --- ChangeLog 27 Jun 2005 22:24:28 -0000 1.78 +++ ChangeLog 28 Jun 2005 05:05:23 -0000 1.79 @@ -1,3 +1,8 @@ +2005-06-28 Marcel Telka <ma...@te...> + + * Makefile.am: Enabled installation for Hitachi Workbench. + * configure.ac: Ditto. + 2005-06-27 Marcel Telka <ma...@te...> * stdint/stdint-hwbench.h: New file. |