diff --git a/tgt-null/null.c b/tgt-null/null.c index d7dcbcb2c..f826bc2dc 100644 --- a/tgt-null/null.c +++ b/tgt-null/null.c @@ -17,14 +17,14 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #if !defined(WINNT) && !defined(macintosh) -#ident "$Id: null.c,v 1.1 2000/12/02 04:50:32 steve Exp $" +#ident "$Id: null.c,v 1.2 2001/02/07 22:21:59 steve Exp $" #endif /* * This is a null target module. It does nothing. */ -# include +# include "ivl_target.h" int target_design(ivl_design_t des) @@ -39,6 +39,9 @@ DECLARE_CYGWIN_DLL(DllMain); /* * $Log: null.c,v $ + * Revision 1.2 2001/02/07 22:21:59 steve + * ivl_target header search path fixes. + * * Revision 1.1 2000/12/02 04:50:32 steve * Make the null target into a loadable target. * diff --git a/tgt-pal/Makefile.in b/tgt-pal/Makefile.in index 23b56c99b..001d205a9 100644 --- a/tgt-pal/Makefile.in +++ b/tgt-pal/Makefile.in @@ -16,7 +16,7 @@ # 59 Temple Place - Suite 330 # Boston, MA 02111-1307, USA # -#ident "$Id: Makefile.in,v 1.6 2001/01/18 03:09:45 steve Exp $" +#ident "$Id: Makefile.in,v 1.7 2001/02/07 22:22:00 steve Exp $" # # SHELL = /bin/sh @@ -47,7 +47,7 @@ all: pal.tgt %.o: %.c @[ -d dep ] || mkdir dep - $(CC) -Wall $(CPPFLAGS) -I$(srcdir)/.. -MD -c $< -o $*.o + $(CC) -Wall -I$(srcdir)/.. $(CPPFLAGS) -MD -c $< -o $*.o mv $*.d dep O = imain.o dump_final.o emit_jed.o enables.o fit_log.o fit_reg.o pads.o diff --git a/tgt-pal/enables.c b/tgt-pal/enables.c index b9918c86b..5dccf3027 100644 --- a/tgt-pal/enables.c +++ b/tgt-pal/enables.c @@ -16,9 +16,9 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ -#ident "$Id: enables.c,v 1.2 2000/12/09 03:42:52 steve Exp $" +#ident "$Id: enables.c,v 1.3 2001/02/07 22:22:00 steve Exp $" -# include +# include "ivl_target.h" # include # include "priv.h" @@ -77,6 +77,9 @@ void absorb_pad_enables(void) /* * $Log: enables.c,v $ + * Revision 1.3 2001/02/07 22:22:00 steve + * ivl_target header search path fixes. + * * Revision 1.2 2000/12/09 03:42:52 steve * Stuff registers into macrocells. * diff --git a/tgt-pal/fit_log.c b/tgt-pal/fit_log.c index 1a0f811ca..04c482435 100644 --- a/tgt-pal/fit_log.c +++ b/tgt-pal/fit_log.c @@ -17,10 +17,10 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #if !defined(WINNT) -#ident "$Id: fit_log.c,v 1.1 2000/12/14 23:37:47 steve Exp $" +#ident "$Id: fit_log.c,v 1.2 2001/02/07 22:22:00 steve Exp $" #endif -# include +# include "ivl_target.h" # include # include # include @@ -126,6 +126,9 @@ int fit_logic(void) /* * $Log: fit_log.c,v $ + * Revision 1.2 2001/02/07 22:22:00 steve + * ivl_target header search path fixes. + * * Revision 1.1 2000/12/14 23:37:47 steve * Start support for fitting the logic. * diff --git a/tgt-pal/fit_reg.c b/tgt-pal/fit_reg.c index 8c05ee741..d21f30bc4 100644 --- a/tgt-pal/fit_reg.c +++ b/tgt-pal/fit_reg.c @@ -17,10 +17,10 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #if !defined(WINNT) -#ident "$Id: fit_reg.c,v 1.3 2001/01/15 00:05:39 steve Exp $" +#ident "$Id: fit_reg.c,v 1.4 2001/02/07 22:22:00 steve Exp $" #endif -# include +# include "ivl_target.h" # include # include # include "priv.h" @@ -136,6 +136,9 @@ int scan_ff_q(ivl_lpm_ff_t ff, unsigned q) /* * $Log: fit_reg.c,v $ + * Revision 1.4 2001/02/07 22:22:00 steve + * ivl_target header search path fixes. + * * Revision 1.3 2001/01/15 00:05:39 steve * Add client data pointer for scope and process scanners. * diff --git a/tgt-stub/Makefile.in b/tgt-stub/Makefile.in index 0228815f4..2cb998967 100644 --- a/tgt-stub/Makefile.in +++ b/tgt-stub/Makefile.in @@ -16,7 +16,7 @@ # 59 Temple Place - Suite 330 # Boston, MA 02111-1307, USA # -#ident "$Id: Makefile.in,v 1.6 2000/12/14 23:38:04 steve Exp $" +#ident "$Id: Makefile.in,v 1.7 2001/02/07 22:22:00 steve Exp $" # # SHELL = /bin/sh @@ -47,7 +47,7 @@ all: stub.tgt %.o: %.c @[ -d dep ] || mkdir dep - $(CC) -Wall $(CPPFLAGS) -I$(srcdir)/.. -MD -c $< -o $*.o + $(CC) -Wall -I$(srcdir)/.. $(CPPFLAGS) -MD -c $< -o $*.o mv $*.d dep O = stub.o diff --git a/tgt-stub/stub.c b/tgt-stub/stub.c index 2d88e68d0..83b59e331 100644 --- a/tgt-stub/stub.c +++ b/tgt-stub/stub.c @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #if !defined(WINNT) && !defined(macintosh) -#ident "$Id: stub.c,v 1.28 2001/01/15 00:47:02 steve Exp $" +#ident "$Id: stub.c,v 1.29 2001/02/07 22:22:00 steve Exp $" #endif /* @@ -27,7 +27,7 @@ * understand the behavior of the core as it uses a target module. */ -# include +# include "ivl_target.h" # include static FILE*out; @@ -415,6 +415,9 @@ DECLARE_CYGWIN_DLL(DllMain); /* * $Log: stub.c,v $ + * Revision 1.29 2001/02/07 22:22:00 steve + * ivl_target header search path fixes. + * * Revision 1.28 2001/01/15 00:47:02 steve * Pass scope type information to the target module. * diff --git a/tgt-verilog/Makefile.in b/tgt-verilog/Makefile.in index 6592423d3..9b9f9eb1f 100644 --- a/tgt-verilog/Makefile.in +++ b/tgt-verilog/Makefile.in @@ -16,7 +16,7 @@ # 59 Temple Place - Suite 330 # Boston, MA 02111-1307, USA # -#ident "$Id: Makefile.in,v 1.5 2000/12/14 23:38:04 steve Exp $" +#ident "$Id: Makefile.in,v 1.6 2001/02/07 22:22:00 steve Exp $" # # SHELL = /bin/sh @@ -47,7 +47,7 @@ all: verilog.tgt %.o: %.c @[ -d dep ] || mkdir dep - $(CC) -Wall $(CPPFLAGS) -I$(srcdir)/.. -MD -c $< -o $*.o + $(CC) -Wall -I$(srcdir)/.. $(CPPFLAGS) -MD -c $< -o $*.o mv $*.d dep O = verilog.o diff --git a/tgt-verilog/verilog.c b/tgt-verilog/verilog.c index 1742ac6b4..3d7199e9c 100644 --- a/tgt-verilog/verilog.c +++ b/tgt-verilog/verilog.c @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #if !defined(WINNT) && !defined(macintosh) -#ident "$Id: verilog.c,v 1.19 2001/01/15 00:05:39 steve Exp $" +#ident "$Id: verilog.c,v 1.20 2001/02/07 22:22:00 steve Exp $" #endif /* @@ -26,7 +26,7 @@ * the design, but is internally the complete design. */ -# include +# include "ivl_target.h" # include # include @@ -440,6 +440,9 @@ DECLARE_CYGWIN_DLL(DllMain); /* * $Log: verilog.c,v $ + * Revision 1.20 2001/02/07 22:22:00 steve + * ivl_target header search path fixes. + * * Revision 1.19 2001/01/15 00:05:39 steve * Add client data pointer for scope and process scanners. *