2005-06-28 Marcel Telka <marcel@telka.sk>

* Makefile.am: Enabled installation for Hitachi Workbench.
	* configure.ac: Ditto.


git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@651 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Marcel Telka 20 years ago
parent 288b4ec372
commit d4d76cf216

@ -7,3 +7,5 @@ config.status
configure
owce-stdint.h
stdint.h
aconftest.s20
econftest.s20

@ -1,3 +1,8 @@
2005-06-28 Marcel Telka <marcel@telka.sk>
* Makefile.am: Enabled installation for Hitachi Workbench.
* configure.ac: Ditto.
2005-06-27 Marcel Telka <marcel@telka.sk>
* stdint/stdint-hwbench.h: New file.

@ -30,7 +30,11 @@
# Written by Marcel Telka <marcel@telka.sk>, 2002.
#
if HAVE_HWBENCH
openwinceincdir = @HWBENCH_PATH@/IAR/INC/openwince
else
openwinceincdir = $(includedir)/openwince
endif
nobase_openwinceinc_HEADERS = \
common.h \
@ -119,14 +123,18 @@ noinst_HEADERS = \
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

@ -21,3 +21,12 @@ Installation instructions
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

@ -70,5 +70,8 @@ AC_CHECK_HEADERS( stdint.h, [], [
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

Loading…
Cancel
Save