diff --git a/configure.ac b/configure.ac index f480b46ad..f0c83767e 100644 --- a/configure.ac +++ b/configure.ac @@ -1036,7 +1036,7 @@ AC_CONFIG_FILES([Makefile src/spicelib/devices/hfet1/Makefile src/spicelib/devices/hfet2/Makefile src/spicelib/devices/hisim2/Makefile - src/spicelib/devices/hisimhv/Makefile + src/spicelib/devices/hisimhv1/Makefile src/spicelib/devices/jfet/Makefile src/spicelib/devices/jfet2/Makefile src/spicelib/devices/ltra/Makefile @@ -1112,7 +1112,7 @@ AC_CONFIG_FILES([Makefile tests/general/Makefile tests/hfet/Makefile tests/hisim/Makefile - tests/hisimhv/Makefile + tests/hisimhv1/Makefile tests/jfet/Makefile tests/mes/Makefile tests/mesa/Makefile diff --git a/src/Makefile.am b/src/Makefile.am index 1e7a0faaf..f55281c67 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -64,7 +64,7 @@ DYNAMIC_DEVICELIBS = \ spicelib/devices/hfet1/libhfet.la \ spicelib/devices/hfet2/libhfet2.la \ spicelib/devices/hisim2/libhisim2.la \ - spicelib/devices/hisimhv/libhisimhv.la \ + spicelib/devices/hisimhv1/libhisimhv1.la \ spicelib/devices/jfet/libjfet.la \ spicelib/devices/jfet2/libjfet2.la \ spicelib/devices/ltra/libltra.la \ diff --git a/src/spicelib/devices/Makefile.am b/src/spicelib/devices/Makefile.am index 6d889bdc6..9885998a1 100644 --- a/src/spicelib/devices/Makefile.am +++ b/src/spicelib/devices/Makefile.am @@ -28,7 +28,7 @@ SUBDIRS = \ hfet1 \ hfet2 \ hisim2 \ - hisimhv \ + hisimhv1 \ jfet \ jfet2 \ ltra \ @@ -88,7 +88,7 @@ DIST_SUBDIRS = \ hfet1 \ hfet2 \ hisim2 \ - hisimhv \ + hisimhv1 \ jfet \ jfet2 \ ltra \ diff --git a/src/spicelib/devices/dev.c b/src/spicelib/devices/dev.c index 033799c56..60dd437cf 100644 --- a/src/spicelib/devices/dev.c +++ b/src/spicelib/devices/dev.c @@ -97,7 +97,7 @@ int add_udn(int,Evt_Udn_Info_t **); #include "hfet1/hfetitf.h" #include "hfet2/hfet2itf.h" #include "hisim2/hsm2itf.h" -#include "hisimhv/hsmhvitf.h" +#include "hisimhv1/hsmhvitf.h" #include "ind/inditf.h" #include "isrc/isrcitf.h" #include "jfet/jfetitf.h" @@ -302,12 +302,12 @@ SPICEdev ** devices(void) #ifdef ADMS #define DEVICES_USED {"asrc", "bjt", "vbic", "bsim1", "bsim2", "bsim3", "bsim3v32", "bsim3v2", "bsim3v1", "bsim4", "bsim4v4", "bsim4v5", "bsim4v6", \ - "bsim4soi", "bsim3soipd", "bsim3soifd", "bsim3soidd", "hisim2", "hisimhv", \ + "bsim4soi", "bsim3soipd", "bsim3soifd", "bsim3soidd", "hisim2", "hisimhv1", \ "cap", "cccs", "ccvs", "csw", "dio", "hfet", "hfet2", "ind", "isrc", "jfet", "ltra", "mes", "mesa" ,"mos1", "mos2", "mos3", \ "mos6", "mos9", "res", "soi3", "sw", "tra", "urc", "vccs", "vcvs", "vsrc", "hicum0", "hicum2", "bjt504t", "ekv", "psp102"} #else #define DEVICES_USED {"asrc", "bjt", "vbic", "bsim1", "bsim2", "bsim3", "bsim3v32", "bsim3v2", "bsim3v1", "bsim4", "bsim4v4", "bsim4v5", "bsim4v6", \ - "bsim4soi", "bsim3soipd", "bsim3soifd", "bsim3soidd", "hisim2", "hisimhv", \ + "bsim4soi", "bsim3soipd", "bsim3soifd", "bsim3soidd", "hisim2", "hisimhv1", \ "cap", "cccs", "ccvs", "csw", "dio", "hfet", "hfet2", "ind", "isrc", "jfet", "ltra", "mes", "mesa" ,"mos1", "mos2", "mos3", \ "mos6", "mos9", "res", "soi3", "sw", "tra", "urc", "vccs", "vcvs", "vsrc"} #endif diff --git a/src/spicelib/devices/hisimhv1/Makefile.am b/src/spicelib/devices/hisimhv1/Makefile.am index a270cfef2..ea6d9e6fe 100644 --- a/src/spicelib/devices/hisimhv1/Makefile.am +++ b/src/spicelib/devices/hisimhv1/Makefile.am @@ -1,8 +1,8 @@ ## Process this file with automake to produce Makefile.in -noinst_LTLIBRARIES = libhisimhv.la +noinst_LTLIBRARIES = libhisimhv1.la -libhisimhv_la_SOURCES = hisimhv.h \ +libhisimhv1_la_SOURCES = hisimhv.h \ hsmhv.c \ hsmhvacld.c \ hsmhvask.c \ diff --git a/tests/Makefile.am b/tests/Makefile.am index d90a6c40e..543ccaf05 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -5,7 +5,7 @@ SUBDIRS = \ bsim4 \ bsimsoi \ hisim \ - hisimhv + hisimhv1 if XSPICE_WANTED SUBDIRS += xspice @@ -25,7 +25,7 @@ DIST_SUBDIRS = \ general \ hfet \ hisim \ - hisimhv \ + hisimhv1 \ jfet \ mes \ mesa \ diff --git a/visualc/vngspice.vcproj b/visualc/vngspice.vcproj index 8f13eda6c..edd92c317 100644 --- a/visualc/vngspice.vcproj +++ b/visualc/vngspice.vcproj @@ -1,4 +1,4 @@ - +