Updates for Cygwin portability (pr1585922)

This commit is contained in:
steve 2006-10-30 22:45:36 +00:00
parent 2302693201
commit 841378426f
28 changed files with 211 additions and 149 deletions

View File

@ -16,7 +16,7 @@
# 59 Temple Place - Suite 330
# Boston, MA 02111-1307, USA
#
#ident "$Id: Makefile.in,v 1.178 2006/09/23 04:57:19 steve Exp $"
#ident "$Id: Makefile.in,v 1.179 2006/10/30 22:45:36 steve Exp $"
#
#
SHELL = /bin/sh
@ -84,17 +84,20 @@ check: all
clean:
for dir in $(SUBDIRS); do (cd $$dir ; $(MAKE) $@); done
for dir in vpi ivlpp tgt-verilog driver; \
for dir in vpi ivlpp tgt-verilog tgt-pal driver driver-vpi; \
do (cd $$dir ; $(MAKE) $@); done
rm -f *.o parse.cc parse.cc.output parse.h lexor.cc
rm -f ivl.exp iverilog-vpi.pdf iverilog-vpi.ps parse.output
rm -f syn-rules.output dosify.exe
rm -f lexor_keyword.cc libivl.a libvpi.a iverilog-vpi syn-rules.cc*
rm -rf dep ivl@EXEEXT@
distclean: clean
for dir in $(SUBDIRS); do (cd $$dir ; $(MAKE) $@); done
for dir in vpi ivlpp tgt-verilog driver; \
for dir in vpi ivlpp tgt-verilog tgt-pal driver driver-vpi; \
do (cd $$dir ; $(MAKE) $@); done
rm -f Makefile config.status config.log config.cache config.h
rm -f _pli_types.h
TT = t-dll.o t-dll-api.o t-dll-expr.o t-dll-proc.o
FF = cprop.o nodangle.o synth.o synth2.o syn-rules.o

View File

@ -16,7 +16,7 @@
# 59 Temple Place - Suite 330
# Boston, MA 02111-1307, USA
#
#ident "$Id: Makefile.in,v 1.24 2004/10/13 22:01:34 steve Exp $"
#ident "$Id: Makefile.in,v 1.25 2006/10/30 22:45:37 steve Exp $"
#
#
SHELL = /bin/sh
@ -50,7 +50,7 @@ all: iverilog@EXEEXT@
clean:
rm -f *.o lexor.c parse.c parse.h parse.output
rm -f cflexor.c cfparse.c cfparse.h cfparse.output
rm -f iverilog@EXEEXT@
rm -f iverilog@EXEEXT@ iverilog.pdf iverilog.ps
distclean: clean
rm -f Makefile

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: hello_vpi.c,v 1.3 2002/08/12 01:35:01 steve Exp $"
#ident "$Id: hello_vpi.c,v 1.4 2006/10/30 22:46:25 steve Exp $"
#endif
/*
@ -33,7 +33,7 @@
# include <vpi_user.h>
static int my_hello_calltf(char *xx)
static PIN_INT32 my_hello_calltf(char *xx)
{
vpi_printf("Hello World, from VPI.\n");
return 0;
@ -62,6 +62,9 @@ void (*vlog_startup_routines[])() = {
};
/*
* $Log: hello_vpi.c,v $
* Revision 1.4 2006/10/30 22:46:25 steve
* Updates for Cygwin portability (pr1585922)
*
* Revision 1.3 2002/08/12 01:35:01 steve
* conditional ident string using autoconfig.
*

View File

@ -153,11 +153,16 @@ ivl_signal_lsb
ivl_signal_msb
ivl_signal_name
ivl_signal_nex
ivl_signal_npath
ivl_signal_path
ivl_signal_port
ivl_signal_signed
ivl_signal_type
ivl_signal_width
ivl_path_delay
ivl_path_source
ivl_process_attr_cnt
ivl_process_attr_val
ivl_process_scope

View File

@ -18,7 +18,7 @@
# 59 Temple Place - Suite 330
# Boston, MA 02111-1307, USA
#
#ident "$Id: Makefile.in,v 1.17 2004/10/04 01:10:56 steve Exp $"
#ident "$Id: Makefile.in,v 1.18 2006/10/30 22:45:37 steve Exp $"
#
#
SHELL = /bin/sh
@ -44,18 +44,18 @@ CPPFLAGS = @ident_support@ -I. -I.. -I$(srcdir)/.. -I$(srcdir) @CPPFLAGS@ @DEFS@
CFLAGS = -Wall @CFLAGS@
LDFLAGS = @LDFLAGS@
all: ivlpp
all: ivlpp@EXEEXT@
clean:
rm -f *.o lexor.c parse.c parse.h parse.output ivlpp
rm -f *.o lexor.c parse.c parse.h parse.output ivlpp@EXEEXT@
distclean: clean
rm -f Makefile
O = main.o lexor.o parse.o
ivlpp: $O
$(CC) $(LDFLAGS) $O -o ivlpp @EXTRALIBS@
ivlpp@EXEEXT@: $O
$(CC) $(LDFLAGS) $O -o ivlpp@EXEEXT@ @EXTRALIBS@
lexor.c: lexor.lex
flex -s -olexor.c $(srcdir)/lexor.lex
@ -63,16 +63,16 @@ lexor.c: lexor.lex
parse.h parse.c: parse.y
bison --verbose -t -d -o parse.c $(srcdir)/parse.y
install: all installdirs $(libdir)/ivl/ivlpp
install: all installdirs $(libdir)/ivl/ivlpp@EXEEXT@
$(libdir)/ivl/ivlpp: ivlpp
$(INSTALL_PROGRAM) ./ivlpp $(libdir)/ivl/ivlpp
$(libdir)/ivl/ivlpp@EXEEXT@: ivlpp@EXEEXT@
$(INSTALL_PROGRAM) ./ivlpp@EXEEXT@ $(libdir)/ivl/ivlpp@EXEEXT@
installdirs: ../mkinstalldirs
$(srcdir)/../mkinstalldirs $(libdir)/ivl
uninstall:
rm -f $(libdir)/ivl/ivlpp
rm -f $(libdir)/ivl/ivlpp@EXEEXT@
lexor.o: lexor.c parse.h globals.h
main.o: main.c globals.h

View File

@ -16,7 +16,7 @@
# 59 Temple Place - Suite 330
# Boston, MA 02111-1307, USA
#
#ident "$Id: Makefile.in,v 1.34 2004/10/04 01:10:07 steve Exp $"
#ident "$Id: Makefile.in,v 1.35 2006/10/30 22:45:37 steve Exp $"
#
#
SHELL = /bin/sh
@ -92,7 +92,7 @@ clean:
rm -rf *.o dep libveriuser.a libveriuser.o bin32
distclean: clean
rm -f Makefile config.status config.log config.cache
rm -f Makefile config.status config.log config.cache config.h
install:: all installdirs $(libdir64)/libveriuser.a $(INSTALL32)

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_next.c,v 1.3 2003/06/17 16:55:07 steve Exp $"
#ident "$Id: a_next.c,v 1.4 2006/10/30 22:45:37 steve Exp $"
#endif
#include <stdio.h>
@ -34,7 +34,7 @@ handle acc_next(PLI_INT32 *type, handle scope, handle prev)
/* trace */
if (pli_trace) {
int *ip;
PLI_INT32 *ip;
fprintf(pli_trace, "acc_next(%p <", type);
for (ip = type; *ip; ip++) {
fprintf(pli_trace, "%s%d", ip != type ? "," : "", *ip);
@ -94,6 +94,9 @@ handle acc_next_scope(handle scope, handle prev)
/*
* $Log: a_next.c,v $
* Revision 1.4 2006/10/30 22:45:37 steve
* Updates for Cygwin portability (pr1585922)
*
* Revision 1.3 2003/06/17 16:55:07 steve
* 1) setlinebuf() for vpi_trace
* 2) Addes error checks for trace file opens

View File

@ -18,7 +18,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: veriusertfs.c,v 1.15 2004/09/10 23:13:05 steve Exp $"
#ident "$Id: veriusertfs.c,v 1.16 2006/10/30 22:45:37 steve Exp $"
#endif
/*
@ -44,9 +44,9 @@ typedef struct t_pli_data {
int paramvc; /* parameter number for misctf */
} s_pli_data, *p_pli_data;
static int compiletf(char *);
static int calltf(char *);
static int callback(p_cb_data);
static PLI_INT32 compiletf(char *);
static PLI_INT32 calltf(char *);
static PLI_INT32 callback(p_cb_data);
/*
* Register veriusertfs routines/wrappers. Iterate over the tfcell
@ -139,7 +139,7 @@ void veriusertfs_register_table(p_tfcell vtable)
* This function calls the veriusertfs checktf and sets up all the
* callbacks misctf requires.
*/
static int compiletf(char *data)
static PLI_INT32 compiletf(char *data)
{
p_pli_data pli;
p_tfcell tf;
@ -221,7 +221,7 @@ static int compiletf(char *data)
/*
* This function is the wrapper for the veriusertfs calltf routine.
*/
static int calltf(char *data)
static PLI_INT32 calltf(char *data)
{
int rc = 0;
p_pli_data pli;
@ -249,13 +249,13 @@ static int calltf(char *data)
*/
extern int async_misctf_enable;
static int callback(p_cb_data data)
static PLI_INT32 callback(p_cb_data data)
{
p_pli_data pli;
p_tfcell tf;
int reason;
int paramvc = 0;
int rc;
PLI_INT32 rc;
/* not enabled */
if (data->reason == cbValueChange && !async_misctf_enable)
@ -389,6 +389,9 @@ PLI_INT32 tf_setrealdelay(double dly)
}
/*
* $Log: veriusertfs.c,v $
* Revision 1.16 2006/10/30 22:45:37 steve
* Updates for Cygwin portability (pr1585922)
*
* Revision 1.15 2004/09/10 23:13:05 steve
* Compile cleanup of C code.
*

View File

@ -16,7 +16,7 @@
# 59 Temple Place - Suite 330
# Boston, MA 02111-1307, USA
#
#ident "$Id: Makefile.in,v 1.16 2006/05/01 18:48:24 steve Exp $"
#ident "$Id: Makefile.in,v 1.17 2006/10/30 22:45:37 steve Exp $"
#
#
SHELL = /bin/sh
@ -70,7 +70,7 @@ clean:
rm -rf *.o dep stub.tgt
distclean: clean
rm -f Makefile
rm -f Makefile config.status config.log
install: all installdirs $(libdir)/ivl/stub.tgt \
$(libdir)/ivl/stub.conf $(libdir)/ivl/stub-s.conf

View File

@ -16,7 +16,7 @@
# 59 Temple Place - Suite 330
# Boston, MA 02111-1307, USA
#
#ident "$Id: Makefile.in,v 1.24 2005/09/14 02:53:15 steve Exp $"
#ident "$Id: Makefile.in,v 1.25 2006/10/30 22:45:37 steve Exp $"
#
#
SHELL = /bin/sh
@ -77,10 +77,10 @@ Makefile: Makefile.in config.status
./config.status
clean:
rm -rf *.o dep vvp.tgt
rm -rf *.o dep vvp.tgt vvp.conf vvp-s.conf
distclean: clean
rm -f Makefile config.status config.log config.cache
rm -f Makefile config.status config.log config.cache vvp_config.h
check: all

View File

@ -16,7 +16,7 @@
# 59 Temple Place - Suite 330
# Boston, MA 02111-1307, USA
#
#ident "$Id: Makefile.in,v 1.59 2006/08/03 05:06:04 steve Exp $"
#ident "$Id: Makefile.in,v 1.60 2006/10/30 22:45:37 steve Exp $"
#
#
SHELL = /bin/sh
@ -111,7 +111,7 @@ clean:
rm -rf *.o sys_readmem_lex.c dep system.vpi bin32
distclean: clean
rm -f Makefile
rm -f Makefile config.status config.log vpi_config.h
install: all installdirs $(vpidir)/system.vpi $(libdir)/ivl/system.sft $(INSTALL32)

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: sys_convert.c,v 1.5 2004/02/15 18:03:30 steve Exp $"
#ident "$Id: sys_convert.c,v 1.6 2006/10/30 22:45:37 steve Exp $"
#endif
# include "vpi_config.h"
@ -86,13 +86,13 @@ static void double2bits(double real, PLI_UINT32 bits[2])
#endif
}
static int sizetf_32 (char*x) { return 32; }
static int sizetf_64 (char*x) { return 64; }
static PLI_INT32 sizetf_32 (char*x) { return 32; }
static PLI_INT32 sizetf_64 (char*x) { return 64; }
static int sys_convert_compiletf(char *name)
static PLI_INT32 sys_convert_compiletf(char *name)
{
vpiHandle call_hand, argv, arg;
int rtn = 0;
PLI_INT32 rtn = 0;
call_hand = vpi_handle(vpiSysTfCall, 0);
argv = vpi_iterate(vpiArgument, call_hand);
@ -116,7 +116,7 @@ static int sys_convert_compiletf(char *name)
return rtn;
}
static int sys_bitstoreal_calltf(char *user)
static PLI_INT32 sys_bitstoreal_calltf(char *user)
{
vpiHandle sys, argv, arg;
s_vpi_value value;
@ -147,7 +147,7 @@ static int sys_bitstoreal_calltf(char *user)
return 0;
}
static int sys_itor_calltf(char *user)
static PLI_INT32 sys_itor_calltf(char *user)
{
vpiHandle sys, argv, arg;
s_vpi_value value;
@ -174,7 +174,7 @@ static int sys_itor_calltf(char *user)
return 0;
}
static int sys_realtobits_calltf(char *user)
static PLI_INT32 sys_realtobits_calltf(char *user)
{
vpiHandle sys, argv, arg;
s_vpi_value value;
@ -211,7 +211,7 @@ static int sys_realtobits_calltf(char *user)
return 0;
}
static int sys_rtoi_calltf(char *user)
static PLI_INT32 sys_rtoi_calltf(char *user)
{
vpiHandle sys, argv, arg;
s_vpi_value value;
@ -281,6 +281,9 @@ void sys_convert_register()
/*
* $Log: sys_convert.c,v $
* Revision 1.6 2006/10/30 22:45:37 steve
* Updates for Cygwin portability (pr1585922)
*
* Revision 1.5 2004/02/15 18:03:30 steve
* Cleanup of warnings.
*

View File

@ -18,7 +18,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: sys_deposit.c,v 1.5 2004/10/04 01:10:58 steve Exp $"
#ident "$Id: sys_deposit.c,v 1.6 2006/10/30 22:45:37 steve Exp $"
#endif
# include "vpi_config.h"
@ -26,7 +26,7 @@
# include "vpi_user.h"
# include <assert.h>
static int sys_deposit_calltf(char *name)
static PLI_INT32 sys_deposit_calltf(char *name)
{
vpiHandle sys, argv, target, value;
s_vpi_value val;
@ -79,6 +79,9 @@ void sys_deposit_register()
/*
* $Log: sys_deposit.c,v $
* Revision 1.6 2006/10/30 22:45:37 steve
* Updates for Cygwin portability (pr1585922)
*
* Revision 1.5 2004/10/04 01:10:58 steve
* Clean up spurious trailing white space.
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: sys_display.c,v 1.72 2006/08/12 03:38:12 steve Exp $"
#ident "$Id: sys_display.c,v 1.73 2006/10/30 22:45:37 steve Exp $"
#endif
# include "vpi_config.h"
@ -925,7 +925,7 @@ static int get_default_format(char *name)
return default_format;
}
static int sys_display_calltf(char *name)
static PLI_INT32 sys_display_calltf(char *name)
{
struct strobe_cb_info*info;
vpiHandle sys = vpi_handle(vpiSysTfCall, 0);
@ -960,7 +960,7 @@ static int sys_display_calltf(char *name)
* where it is use to perform the actual formatting and printing.
*/
static int strobe_cb(p_cb_data cb)
static PLI_INT32 strobe_cb(p_cb_data cb)
{
struct strobe_cb_info*info = (struct strobe_cb_info*)cb->user_data;
@ -974,7 +974,7 @@ static int strobe_cb(p_cb_data cb)
return 0;
}
static int sys_strobe_calltf(char*name)
static PLI_INT32 sys_strobe_calltf(char*name)
{
struct t_cb_data cb;
struct t_vpi_time time;
@ -1064,7 +1064,7 @@ static vpiHandle *monitor_callbacks = 0;
static int monitor_scheduled = 0;
static int monitor_enabled = 1;
static int monitor_cb_2(p_cb_data cb)
static PLI_INT32 monitor_cb_2(p_cb_data cb)
{
do_display(1, &monitor_info);
vpi_printf("\n");
@ -1078,7 +1078,7 @@ static int monitor_cb_2(p_cb_data cb)
* display to occur in a ReadOnlySync callback. The monitor_scheduled
* flag is used to allow only one monitor strobe to be scheduled.
*/
static int monitor_cb_1(p_cb_data cause)
static PLI_INT32 monitor_cb_1(p_cb_data cause)
{
struct t_cb_data cb;
struct t_vpi_time time;
@ -1104,7 +1104,7 @@ static int monitor_cb_1(p_cb_data cause)
return 0;
}
static int sys_monitor_calltf(char*name)
static PLI_INT32 sys_monitor_calltf(char*name)
{
unsigned idx;
struct t_cb_data cb;
@ -1171,14 +1171,14 @@ static int sys_monitor_calltf(char*name)
return 0;
}
static int sys_monitoron_calltf(char*name)
static PLI_INT32 sys_monitoron_calltf(char*name)
{
monitor_enabled = 1;
monitor_cb_1(0);
return 0;
}
static int sys_monitoroff_calltf(char*name)
static PLI_INT32 sys_monitoroff_calltf(char*name)
{
monitor_enabled = 0;
return 0;
@ -1187,7 +1187,7 @@ static int sys_monitoroff_calltf(char*name)
/* Implement $fdisplay and $fwrite.
* Perhaps this could be merged into sys_display_calltf.
*/
static int sys_fdisplay_calltf(char *name)
static PLI_INT32 sys_fdisplay_calltf(char *name)
{
struct strobe_cb_info info;
unsigned int mcd;
@ -1251,7 +1251,7 @@ static int sys_fdisplay_calltf(char *name)
return 0;
}
static int sys_timeformat_compiletf(char *xx)
static PLI_INT32 sys_timeformat_compiletf(char *xx)
{
vpiHandle sys = vpi_handle(vpiSysTfCall, 0);
vpiHandle argv = vpi_iterate(vpiArgument, sys);
@ -1273,7 +1273,7 @@ static int sys_timeformat_compiletf(char *xx)
return 0;
}
static int sys_timeformat_calltf(char *xx)
static PLI_INT32 sys_timeformat_calltf(char *xx)
{
s_vpi_value value;
vpiHandle sys = vpi_handle(vpiSysTfCall, 0);
@ -1304,7 +1304,7 @@ static int sys_timeformat_calltf(char *xx)
return 0;
}
static int sys_end_of_compile(p_cb_data cb_data)
static PLI_INT32 sys_end_of_compile(p_cb_data cb_data)
{
/* The default timeformat prints times in unit of simulation
precision. */
@ -1560,6 +1560,9 @@ void sys_display_register()
/*
* $Log: sys_display.c,v $
* Revision 1.73 2006/10/30 22:45:37 steve
* Updates for Cygwin portability (pr1585922)
*
* Revision 1.72 2006/08/12 03:38:12 steve
* scanf support for real values.
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: sys_fileio.c,v 1.8 2006/08/03 05:02:46 steve Exp $"
#ident "$Id: sys_fileio.c,v 1.9 2006/10/30 22:45:37 steve Exp $"
#endif
# include "vpi_user.h"
@ -33,7 +33,7 @@
/*
* Implement the $fopen system function.
*/
static int sys_fopen_compiletf(char *name)
static PLI_INT32 sys_fopen_compiletf(char *name)
{
vpiHandle sys = vpi_handle(vpiSysTfCall, 0);
vpiHandle argv = vpi_iterate(vpiArgument, sys);
@ -81,7 +81,7 @@ static int sys_fopen_compiletf(char *name)
return 0;
}
static int sys_fopen_calltf(char *name)
static PLI_INT32 sys_fopen_calltf(char *name)
{
s_vpi_value value;
char *mode_string = 0;
@ -126,7 +126,7 @@ static int sys_fopen_calltf(char *name)
return 0;
}
static int sys_fopen_sizetf(char*x)
static PLI_INT32 sys_fopen_sizetf(char*x)
{
return 32;
}
@ -134,7 +134,7 @@ static int sys_fopen_sizetf(char*x)
/*
* Implement $fclose system function
*/
static int sys_fclose_calltf(char *name)
static PLI_INT32 sys_fclose_calltf(char *name)
{
unsigned int mcd;
int type;
@ -170,14 +170,14 @@ static int sys_fclose_calltf(char *name)
return 0;
}
static int sys_fflush_calltf(char *name)
static PLI_INT32 sys_fflush_calltf(char *name)
{
fflush(0);
return 0;
}
static int sys_fputc_calltf(char *name)
static PLI_INT32 sys_fputc_calltf(char *name)
{
unsigned int mcd;
int type;
@ -224,7 +224,7 @@ static int sys_fputc_calltf(char *name)
return fputc(x, fp);
}
static int sys_fgetc_calltf(char *name)
static PLI_INT32 sys_fgetc_calltf(char *name)
{
unsigned int mcd;
int type;
@ -269,12 +269,12 @@ static int sys_fgetc_calltf(char *name)
return 0;
}
static int sys_fgetc_sizetf(char*x)
static PLI_INT32 sys_fgetc_sizetf(char*x)
{
return 32;
}
static int sys_fgets_compiletf(char*name)
static PLI_INT32 sys_fgets_compiletf(char*name)
{
vpiHandle sys = vpi_handle(vpiSysTfCall, 0);
vpiHandle argv = vpi_iterate(vpiArgument, sys);
@ -307,7 +307,7 @@ static int sys_fgets_compiletf(char*name)
return 0;
}
static int sys_fgets_calltf(char *name)
static PLI_INT32 sys_fgets_calltf(char *name)
{
unsigned int mcd;
FILE*fd;
@ -357,7 +357,7 @@ static int sys_fgets_calltf(char *name)
return 0;
}
static int sys_ungetc_compiletf(char*name)
static PLI_INT32 sys_ungetc_compiletf(char*name)
{
int type;
vpiHandle sys = vpi_handle(vpiSysTfCall, 0);
@ -385,7 +385,7 @@ static int sys_ungetc_compiletf(char*name)
return 0;
}
static int sys_ungetc_calltf(char *name)
static PLI_INT32 sys_ungetc_calltf(char *name)
{
unsigned int mcd;
unsigned char x;
@ -429,7 +429,7 @@ static int sys_ungetc_calltf(char *name)
return 0;
}
static int sys_ungetc_sizetf(char*x)
static PLI_INT32 sys_ungetc_sizetf(char*x)
{
return 32;
}
@ -510,6 +510,9 @@ void sys_fileio_register()
/*
* $Log: sys_fileio.c,v $
* Revision 1.9 2006/10/30 22:45:37 steve
* Updates for Cygwin portability (pr1585922)
*
* Revision 1.8 2006/08/03 05:02:46 steve
* Use compiletf to check arguments.
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: sys_finish.c,v 1.9 2004/01/21 01:22:53 steve Exp $"
#ident "$Id: sys_finish.c,v 1.10 2006/10/30 22:45:37 steve Exp $"
#endif
# include "vpi_config.h"
@ -25,7 +25,7 @@
# include "vpi_user.h"
# include <string.h>
static int sys_finish_calltf(char *name)
static PLI_INT32 sys_finish_calltf(char *name)
{
if (strcmp(name,"$stop") == 0) {
vpi_sim_control(vpiStop, 0);
@ -59,6 +59,9 @@ void sys_finish_register()
/*
* $Log: sys_finish.c,v $
* Revision 1.10 2006/10/30 22:45:37 steve
* Updates for Cygwin portability (pr1585922)
*
* Revision 1.9 2004/01/21 01:22:53 steve
* Give the vip directory its own configure and vpi_config.h
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: sys_lxt.c,v 1.26 2004/10/04 01:10:58 steve Exp $"
#ident "$Id: sys_lxt.c,v 1.27 2006/10/30 22:45:37 steve Exp $"
#endif
# include "sys_priv.h"
@ -220,7 +220,7 @@ static void vcd_checkpoint_x()
show_this_item_x(cur);
}
static int variable_cb_2(p_cb_data cause)
static PLI_INT32 variable_cb_2(p_cb_data cause)
{
struct vcd_info* info = vcd_dmp_list;
PLI_UINT64 now = timerec_to_time64(cause->time);
@ -240,7 +240,7 @@ static int variable_cb_2(p_cb_data cause)
return 0;
}
static int variable_cb_1(p_cb_data cause)
static PLI_INT32 variable_cb_1(p_cb_data cause)
{
struct t_cb_data cb;
struct vcd_info*info = (struct vcd_info*)cause->user_data;
@ -263,7 +263,7 @@ static int variable_cb_1(p_cb_data cause)
return 0;
}
static int dumpvars_cb(p_cb_data cause)
static PLI_INT32 dumpvars_cb(p_cb_data cause)
{
if (dumpvars_status != 1)
return 0;
@ -310,7 +310,7 @@ inline static int install_dumpvars_callback(void)
return 0;
}
static int sys_dumpoff_calltf(char*name)
static PLI_INT32 sys_dumpoff_calltf(char*name)
{
s_vpi_time now;
PLI_UINT64 now64;
@ -340,7 +340,7 @@ static int sys_dumpoff_calltf(char*name)
return 0;
}
static int sys_dumpon_calltf(char*name)
static PLI_INT32 sys_dumpon_calltf(char*name)
{
s_vpi_time now;
PLI_UINT64 now64;
@ -370,7 +370,7 @@ static int sys_dumpon_calltf(char*name)
return 0;
}
static int sys_dumpall_calltf(char*name)
static PLI_INT32 sys_dumpall_calltf(char*name)
{
s_vpi_time now;
PLI_UINT64 now64;
@ -426,7 +426,7 @@ static void open_dumpfile(const char*path)
}
}
static int sys_dumpfile_calltf(char*name)
static PLI_INT32 sys_dumpfile_calltf(char*name)
{
char*path;
@ -470,7 +470,7 @@ static int sys_dumpfile_calltf(char*name)
/*
* The LXT1 format has no concept of file flushing.
*/
static int sys_dumpflush_calltf(char*name)
static PLI_INT32 sys_dumpflush_calltf(char*name)
{
return 0;
}
@ -674,7 +674,7 @@ static int draw_scope(vpiHandle item)
return depth;
}
static int sys_dumpvars_calltf(char*name)
static PLI_INT32 sys_dumpvars_calltf(char*name)
{
unsigned depth;
s_vpi_value value;
@ -819,6 +819,9 @@ void sys_lxt_register()
/*
* $Log: sys_lxt.c,v $
* Revision 1.27 2006/10/30 22:45:37 steve
* Updates for Cygwin portability (pr1585922)
*
* Revision 1.26 2004/10/04 01:10:58 steve
* Clean up spurious trailing white space.
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: sys_lxt2.c,v 1.8 2004/10/04 01:10:58 steve Exp $"
#ident "$Id: sys_lxt2.c,v 1.9 2006/10/30 22:45:37 steve Exp $"
#endif
# include "sys_priv.h"
@ -222,7 +222,7 @@ static void vcd_checkpoint_x()
show_this_item_x(cur);
}
static int variable_cb_2(p_cb_data cause)
static PLI_INT32 variable_cb_2(p_cb_data cause)
{
struct vcd_info* info = vcd_dmp_list;
PLI_UINT64 now = timerec_to_time64(cause->time);
@ -242,7 +242,7 @@ static int variable_cb_2(p_cb_data cause)
return 0;
}
static int variable_cb_1(p_cb_data cause)
static PLI_INT32 variable_cb_1(p_cb_data cause)
{
struct t_cb_data cb;
struct vcd_info*info = (struct vcd_info*)cause->user_data;
@ -265,7 +265,7 @@ static int variable_cb_1(p_cb_data cause)
return 0;
}
static int dumpvars_cb(p_cb_data cause)
static PLI_INT32 dumpvars_cb(p_cb_data cause)
{
if (dumpvars_status != 1)
return 0;
@ -312,7 +312,7 @@ inline static int install_dumpvars_callback(void)
return 0;
}
static int sys_dumpoff_calltf(char*name)
static PLI_INT32 sys_dumpoff_calltf(char*name)
{
s_vpi_time now;
PLI_UINT64 now64;
@ -341,7 +341,7 @@ static int sys_dumpoff_calltf(char*name)
return 0;
}
static int sys_dumpon_calltf(char*name)
static PLI_INT32 sys_dumpon_calltf(char*name)
{
s_vpi_time now;
PLI_UINT64 now64;
@ -371,7 +371,7 @@ static int sys_dumpon_calltf(char*name)
return 0;
}
static int sys_dumpall_calltf(char*name)
static PLI_INT32 sys_dumpall_calltf(char*name)
{
s_vpi_time now;
PLI_UINT64 now64;
@ -431,7 +431,7 @@ static void open_dumpfile(const char*path)
}
}
static int sys_dumpfile_calltf(char*name)
static PLI_INT32 sys_dumpfile_calltf(char*name)
{
char*path;
@ -479,7 +479,7 @@ static int sys_dumpfile_calltf(char*name)
* writes checkpoints out, but this makes it happen at a specific
* time.
*/
static int sys_dumpflush_calltf(char*name)
static PLI_INT32 sys_dumpflush_calltf(char*name)
{
if (dump_file) lxt2_wr_flush(dump_file);
return 0;
@ -692,7 +692,7 @@ static int draw_scope(vpiHandle item)
return depth;
}
static int sys_dumpvars_calltf(char*name)
static PLI_INT32 sys_dumpvars_calltf(char*name)
{
unsigned depth;
s_vpi_value value;
@ -839,6 +839,9 @@ void sys_lxt2_register()
/*
* $Log: sys_lxt2.c,v $
* Revision 1.9 2006/10/30 22:45:37 steve
* Updates for Cygwin portability (pr1585922)
*
* Revision 1.8 2004/10/04 01:10:58 steve
* Clean up spurious trailing white space.
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: sys_plusargs.c,v 1.5 2004/10/04 01:10:58 steve Exp $"
#ident "$Id: sys_plusargs.c,v 1.6 2006/10/30 22:45:37 steve Exp $"
#endif
# include <vpi_user.h>
@ -25,7 +25,7 @@
# include <stdlib.h>
# include <assert.h>
static int sys_plusargs_sizetf(char*x)
static PLI_INT32 sys_plusargs_sizetf(char*x)
{
return 32;
}
@ -34,7 +34,7 @@ static int sys_plusargs_sizetf(char*x)
* The compiletf for $test$plusargs checks that there is one argument
* to the function call, and that argument is a constant string.
*/
static int sys_test_plusargs_compiletf(char*xx)
static PLI_INT32 sys_test_plusargs_compiletf(char*xx)
{
vpiHandle sys = vpi_handle(vpiSysTfCall, 0);
vpiHandle argv = vpi_iterate(vpiArgument, sys);
@ -81,7 +81,7 @@ static int sys_test_plusargs_compiletf(char*xx)
* passed to the $test$plusargs. If there is a simulator argument that
* is like this argument, then return true. Otherwise return false.
*/
static int sys_test_plusargs_calltf(char*xx)
static PLI_INT32 sys_test_plusargs_calltf(char*xx)
{
int idx;
int flag = 0;
@ -125,7 +125,7 @@ static int sys_test_plusargs_calltf(char*xx)
return 0;
}
static int sys_value_plusargs_compiletf(char*xx)
static PLI_INT32 sys_value_plusargs_compiletf(char*xx)
{
s_vpi_value value;
vpiHandle sys = vpi_handle(vpiSysTfCall, 0);
@ -229,7 +229,7 @@ static int sys_value_plusargs_compiletf(char*xx)
return 0;
}
static int sys_value_plusargs_calltf(char*xx)
static PLI_INT32 sys_value_plusargs_calltf(char*xx)
{
char*cp;
int idx;
@ -329,6 +329,9 @@ void sys_plusargs_register()
/*
* $Log: sys_plusargs.c,v $
* Revision 1.6 2006/10/30 22:45:37 steve
* Updates for Cygwin portability (pr1585922)
*
* Revision 1.5 2004/10/04 01:10:58 steve
* Clean up spurious trailing white space.
*

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: sys_priv.h,v 1.6 2006/08/12 03:38:12 steve Exp $"
#ident "$Id: sys_priv.h,v 1.7 2006/10/30 22:45:37 steve Exp $"
#endif
# include "vpi_config.h"
@ -29,7 +29,7 @@
* This function is used by sys_vcd and sys_lxt as the dumpvars
* compiletf function.
*/
extern int sys_vcd_dumpvars_compiletf(char*name);
extern PLI_INT32 sys_vcd_dumpvars_compiletf(char*name);
/*
* Context structure for PRNG in mt19937int.c
@ -59,6 +59,9 @@ extern struct timeformat_info_s timeformat_info;
/*
* $Log: sys_priv.h,v $
* Revision 1.7 2006/10/30 22:45:37 steve
* Updates for Cygwin portability (pr1585922)
*
* Revision 1.6 2006/08/12 03:38:12 steve
* scanf support for real values.
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: sys_random.c,v 1.14 2004/10/04 01:10:58 steve Exp $"
#ident "$Id: sys_random.c,v 1.15 2006/10/30 22:45:37 steve Exp $"
#endif
# include "sys_priv.h"
@ -190,7 +190,7 @@ static long poisson(long*seed, long mean)
return n;
}
static int sys_dist_poisson_calltf(char*name)
static PLI_INT32 sys_dist_poisson_calltf(char*name)
{
s_vpi_value val;
vpiHandle call_handle;
@ -230,12 +230,12 @@ static int sys_dist_poisson_calltf(char*name)
return 0;
}
static int sys_dist_poisson_sizetf(char*x)
static PLI_INT32 sys_dist_poisson_sizetf(char*x)
{
return 32;
}
static int sys_dist_uniform_calltf(char*name)
static PLI_INT32 sys_dist_uniform_calltf(char*name)
{
s_vpi_value val;
vpiHandle call_handle;
@ -284,12 +284,12 @@ static int sys_dist_uniform_calltf(char*name)
return 0;
}
static int sys_dist_uniform_sizetf(char*x)
static PLI_INT32 sys_dist_uniform_sizetf(char*x)
{
return 32;
}
static int sys_random_calltf(char*name)
static PLI_INT32 sys_random_calltf(char*name)
{
s_vpi_value val;
vpiHandle call_handle;
@ -327,7 +327,7 @@ static int sys_random_calltf(char*name)
return 0;
}
static int sys_random_sizetf(char*x)
static PLI_INT32 sys_random_sizetf(char*x)
{
return 32;
}
@ -362,6 +362,9 @@ void sys_random_register()
/*
* $Log: sys_random.c,v $
* Revision 1.15 2006/10/30 22:45:37 steve
* Updates for Cygwin portability (pr1585922)
*
* Revision 1.14 2004/10/04 01:10:58 steve
* Clean up spurious trailing white space.
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: sys_random_mti.c,v 1.3 2004/10/04 01:10:58 steve Exp $"
#ident "$Id: sys_random_mti.c,v 1.4 2006/10/30 22:45:37 steve Exp $"
#endif
# include "sys_priv.h"
@ -61,7 +61,7 @@ static long mti_dist_uniform(long*seed, long start, long end)
}
static int sys_mti_dist_uniform_calltf(char*name)
static PLI_INT32 sys_mti_dist_uniform_calltf(char*name)
{
s_vpi_value val;
vpiHandle call_handle;
@ -110,12 +110,12 @@ static int sys_mti_dist_uniform_calltf(char*name)
return 0;
}
static int sys_mti_dist_uniform_sizetf(char*x)
static PLI_INT32 sys_mti_dist_uniform_sizetf(char*x)
{
return 32;
}
static int sys_mti_random_calltf(char*name)
static PLI_INT32 sys_mti_random_calltf(char*name)
{
s_vpi_value val;
vpiHandle call_handle;
@ -174,7 +174,7 @@ static int sys_mti_random_calltf(char*name)
return 0;
}
static int sys_mti_random_sizetf(char*x)
static PLI_INT32 sys_mti_random_sizetf(char*x)
{
return 32;
}
@ -202,6 +202,9 @@ void sys_random_mti_register()
/*
* $Log: sys_random_mti.c,v $
* Revision 1.4 2006/10/30 22:45:37 steve
* Updates for Cygwin portability (pr1585922)
*
* Revision 1.3 2004/10/04 01:10:58 steve
* Clean up spurious trailing white space.
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: sys_readmem.c,v 1.17 2006/04/25 05:00:12 steve Exp $"
#ident "$Id: sys_readmem.c,v 1.18 2006/10/30 22:45:37 steve Exp $"
#endif
# include "vpi_config.h"
@ -100,7 +100,7 @@ static int check_file_name(const char*name, vpiHandle item)
}
static int sys_readmem_calltf(char*name)
static PLI_INT32 sys_readmem_calltf(char*name)
{
int code;
int wwid;
@ -355,7 +355,7 @@ static int sys_readmem_calltf(char*name)
return 0;
}
static int sys_writemem_calltf(char*name)
static PLI_INT32 sys_writemem_calltf(char*name)
{
int wwid;
char*path;
@ -594,6 +594,9 @@ void sys_readmem_register()
/*
* $Log: sys_readmem.c,v $
* Revision 1.18 2006/10/30 22:45:37 steve
* Updates for Cygwin portability (pr1585922)
*
* Revision 1.17 2006/04/25 05:00:12 steve
* Warning when file is inadequate for requested range.
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: sys_scanf.c,v 1.3 2006/08/12 04:16:07 steve Exp $"
#ident "$Id: sys_scanf.c,v 1.4 2006/10/30 22:45:37 steve Exp $"
#endif
# include "vpi_user.h"
@ -61,7 +61,7 @@ static void byte_ungetc(struct byte_source*src, int ch)
}
static int sys_fscanf_compiletf(char*name)
static PLI_INT32 sys_fscanf_compiletf(char*name)
{
return 0;
}
@ -467,7 +467,7 @@ static int scan_format(vpiHandle sys, struct byte_source*src, vpiHandle argv)
return 0;
}
static int sys_fscanf_calltf(char*name)
static PLI_INT32 sys_fscanf_calltf(char*name)
{
s_vpi_value val;
vpiHandle sys = vpi_handle(vpiSysTfCall, 0);
@ -493,12 +493,12 @@ static int sys_fscanf_calltf(char*name)
return 0;
}
static int sys_sscanf_compiletf(char*name)
static PLI_INT32 sys_sscanf_compiletf(char*name)
{
return 0;
}
static int sys_sscanf_calltf(char*name)
static PLI_INT32 sys_sscanf_calltf(char*name)
{
s_vpi_value val;
vpiHandle sys = vpi_handle(vpiSysTfCall, 0);
@ -526,7 +526,7 @@ static int sys_sscanf_calltf(char*name)
/*
* All the Xscanf functions return a 32bit value.
*/
static int sys_fscanf_sizetf(char*x)
static PLI_INT32 sys_fscanf_sizetf(char*x)
{
return 32;
}

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: sys_time.c,v 1.10 2004/01/21 01:22:53 steve Exp $"
#ident "$Id: sys_time.c,v 1.11 2006/10/30 22:45:37 steve Exp $"
#endif
# include "vpi_config.h"
@ -37,17 +37,17 @@ static vpiHandle module_of_function(vpiHandle obj)
return obj;
}
static int sys_time_sizetf(char*x)
static PLI_INT32 sys_time_sizetf(char*x)
{
return 64;
}
static int sys_stime_sizetf(char*x)
static PLI_INT32 sys_stime_sizetf(char*x)
{
return 32;
}
static int sys_time_calltf(char*name)
static PLI_INT32 sys_time_calltf(char*name)
{
s_vpi_value val;
s_vpi_time now;
@ -102,7 +102,7 @@ static int sys_time_calltf(char*name)
return 0;
}
static int sys_realtime_calltf(char*name)
static PLI_INT32 sys_realtime_calltf(char*name)
{
s_vpi_value val;
s_vpi_time now;
@ -169,6 +169,9 @@ void sys_time_register()
/*
* $Log: sys_time.c,v $
* Revision 1.11 2006/10/30 22:45:37 steve
* Updates for Cygwin portability (pr1585922)
*
* Revision 1.10 2004/01/21 01:22:53 steve
* Give the vip directory its own configure and vpi_config.h
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: sys_vcd.c,v 1.56 2004/10/04 01:10:58 steve Exp $"
#ident "$Id: sys_vcd.c,v 1.57 2006/10/30 22:45:38 steve Exp $"
#endif
# include "sys_priv.h"
@ -174,7 +174,7 @@ static void vcd_checkpoint_x()
show_this_item_x(cur);
}
static int variable_cb_2(p_cb_data cause)
static PLI_INT32 variable_cb_2(p_cb_data cause)
{
struct vcd_info* info = vcd_dmp_list;
PLI_UINT64 now = timerec_to_time64(cause->time);
@ -194,7 +194,7 @@ static int variable_cb_2(p_cb_data cause)
return 0;
}
static int variable_cb_1(p_cb_data cause)
static PLI_INT32 variable_cb_1(p_cb_data cause)
{
struct t_cb_data cb;
struct vcd_info*info = (struct vcd_info*)cause->user_data;
@ -217,7 +217,7 @@ static int variable_cb_1(p_cb_data cause)
return 0;
}
static int dumpvars_cb(p_cb_data cause)
static PLI_INT32 dumpvars_cb(p_cb_data cause)
{
if (dumpvars_status != 1)
return 0;
@ -268,7 +268,7 @@ inline static int install_dumpvars_callback(void)
return 0;
}
static int sys_dumpoff_calltf(char*name)
static PLI_INT32 sys_dumpoff_calltf(char*name)
{
s_vpi_time now;
PLI_UINT64 now64;
@ -299,7 +299,7 @@ static int sys_dumpoff_calltf(char*name)
return 0;
}
static int sys_dumpon_calltf(char*name)
static PLI_INT32 sys_dumpon_calltf(char*name)
{
s_vpi_time now;
PLI_UINT64 now64;
@ -330,7 +330,7 @@ static int sys_dumpon_calltf(char*name)
return 0;
}
static int sys_dumpall_calltf(char*name)
static PLI_INT32 sys_dumpall_calltf(char*name)
{
s_vpi_time now;
PLI_UINT64 now64;
@ -403,7 +403,7 @@ static void open_dumpfile(void)
}
}
static int sys_dumpfile_compiletf(char*name)
static PLI_INT32 sys_dumpfile_compiletf(char*name)
{
vpiHandle sys = vpi_handle(vpiSysTfCall, 0);
vpiHandle argv = vpi_iterate(vpiArgument, sys);
@ -445,12 +445,12 @@ static int sys_dumpfile_compiletf(char*name)
return 0;
}
static int sys_dumpfile_calltf(char*name)
static PLI_INT32 sys_dumpfile_calltf(char*name)
{
return 0;
}
static int sys_dumpflush_calltf(char*name)
static PLI_INT32 sys_dumpflush_calltf(char*name)
{
if (dump_file)
fflush(dump_file);
@ -673,7 +673,7 @@ static int draw_scope(vpiHandle item)
* This function is also used in sys_lxt to check the arguments of the
* lxt variant of $dumpvars.
*/
int sys_vcd_dumpvars_compiletf(char*name)
PLI_INT32 sys_vcd_dumpvars_compiletf(char*name)
{
vpiHandle sys = vpi_handle(vpiSysTfCall, 0);
vpiHandle argv = vpi_iterate(vpiArgument, sys);
@ -711,7 +711,7 @@ int sys_vcd_dumpvars_compiletf(char*name)
return 0;
}
static int sys_dumpvars_calltf(char*name)
static PLI_INT32 sys_dumpvars_calltf(char*name)
{
unsigned depth;
s_vpi_value value;
@ -835,6 +835,9 @@ void sys_vcd_register()
/*
* $Log: sys_vcd.c,v $
* Revision 1.57 2006/10/30 22:45:38 steve
* Updates for Cygwin portability (pr1585922)
*
* Revision 1.56 2004/10/04 01:10:58 steve
* Clean up spurious trailing white space.
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: sys_vcdoff.c,v 1.3 2004/10/04 01:10:58 steve Exp $"
#ident "$Id: sys_vcdoff.c,v 1.4 2006/10/30 22:45:38 steve Exp $"
#endif
# include "sys_priv.h"
@ -41,17 +41,17 @@
static FILE*dump_file = 0;
static int sys_dumpoff_calltf(char*name)
static PLI_INT32 sys_dumpoff_calltf(char*name)
{
return 0;
}
static int sys_dumpon_calltf(char*name)
static PLI_INT32 sys_dumpon_calltf(char*name)
{
return 0;
}
static int sys_dumpall_calltf(char*name)
static PLI_INT32 sys_dumpall_calltf(char*name)
{
return 0;
}
@ -70,7 +70,7 @@ static void open_dumpfile(const char*path)
}
}
static int sys_dumpfile_calltf(char*name)
static PLI_INT32 sys_dumpfile_calltf(char*name)
{
char*path;
@ -113,7 +113,7 @@ static int sys_dumpfile_calltf(char*name)
return 0;
}
static int sys_dumpvars_calltf(char*name)
static PLI_INT32 sys_dumpvars_calltf(char*name)
{
if (dump_file == 0) {
open_dumpfile("dumpfile.vcd");
@ -171,6 +171,9 @@ void sys_vcdoff_register()
/*
* $Log: sys_vcdoff.c,v $
* Revision 1.4 2006/10/30 22:45:38 steve
* Updates for Cygwin portability (pr1585922)
*
* Revision 1.3 2004/10/04 01:10:58 steve
* Clean up spurious trailing white space.
*

View File

@ -16,7 +16,7 @@
# 59 Temple Place - Suite 330
# Boston, MA 02111-1307, USA
#
#ident "$Id: Makefile.in,v 1.70 2006/06/18 04:15:50 steve Exp $"
#ident "$Id: Makefile.in,v 1.71 2006/10/30 22:45:38 steve Exp $"
#
#
SHELL = /bin/sh
@ -68,7 +68,7 @@ all: dep vvp@EXEEXT@ libvpi.a $(ALL32)
clean:
rm -f *.o *~ parse.cc parse.cc.output parse.h lexor.cc tables.cc
rm -rf dep vvp@EXEEXT@ libvpi.a bin32
rm -rf dep vvp@EXEEXT@ libvpi.a bin32 parse.output vvp.pdf vvp.exp
distclean: clean
rm -f Makefile config.status config.log config.cache config.h