diff --git a/jtag/ChangeLog b/jtag/ChangeLog index 59be178f..6ad6a0ca 100644 --- a/jtag/ChangeLog +++ b/jtag/ChangeLog @@ -1,5 +1,8 @@ 2008-02-23 Arnim Laeuger + * src/svf/Makefile.am (svf_flex.o svf.o): fix dependencies to svf_bison.h + * src/bsdl/Makefile.am (bsdl_flex.o bsdl_sem.o): fix dependencies to bsdl_bison.h + -> resolves [ 1899911 ] * src/tap/cable/ft2232.c (send_and_receive): only flush if not TO_OUTPUT * src/tap/chain.c (chain_shift_data_registers_mode): flush TO_OUTPUT instead of CONSERVATIVELY diff --git a/jtag/src/bsdl/Makefile.am b/jtag/src/bsdl/Makefile.am index 7092acf8..51f98c47 100644 --- a/jtag/src/bsdl/Makefile.am +++ b/jtag/src/bsdl/Makefile.am @@ -34,6 +34,8 @@ libbsdl_a_SOURCES = \ bsdl.c \ bsdl_sem.c +bsdl_flex.o bsdl_sem.o: bsdl_bison.o + AM_LFLAGS = -i MAINTAINERCLEANFILES = \ diff --git a/jtag/src/svf/Makefile.am b/jtag/src/svf/Makefile.am index 2f84abf1..f80ea67c 100644 --- a/jtag/src/svf/Makefile.am +++ b/jtag/src/svf/Makefile.am @@ -36,6 +36,8 @@ libsvf_a_SOURCES = \ svf.h \ svf.c +svf_flex.o svf.o: svf_bison.o + MAINTAINERCLEANFILES = \ svf_bison.c \ svf_bison.h \