* src/analysis/*: Moved these files into src/devices/analysis.
The files in this directory implement the analysis and simulation
for electrical circuits.
This is the final step to separating the Spice sources into a
library part and a frontend part. Now, the devices subdirectory
has to be renamed to spicelib and the devices that are now
scattered in that directory should be moved into a new devices
directory.
* configure.in, src/Makefile.am, src/devices/Makefile.am: Files
affected by the move.
This commit is contained in:
parent
b04989d760
commit
5455e51390
|
|
@ -2,8 +2,8 @@
|
||||||
# Run this to generate all the initial makefiles, etc.
|
# Run this to generate all the initial makefiles, etc.
|
||||||
|
|
||||||
PROJECT=ng-spice
|
PROJECT=ng-spice
|
||||||
TEST_TYPE=-d
|
TEST_TYPE=-f
|
||||||
FILE=src/circuit
|
FILE=DEVICES
|
||||||
|
|
||||||
DIE=0
|
DIE=0
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -197,8 +197,8 @@ doc/Makefile \
|
||||||
man/Makefile \
|
man/Makefile \
|
||||||
man/man1/Makefile \
|
man/man1/Makefile \
|
||||||
src/Makefile \
|
src/Makefile \
|
||||||
src/analysis/Makefile \
|
|
||||||
src/devices/Makefile \
|
src/devices/Makefile \
|
||||||
|
src/devices/analysis/Makefile \
|
||||||
src/devices/asrc/Makefile \
|
src/devices/asrc/Makefile \
|
||||||
src/devices/bjt/Makefile \
|
src/devices/bjt/Makefile \
|
||||||
src/devices/bsim1/Makefile \
|
src/devices/bsim1/Makefile \
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,18 @@
|
||||||
|
2000-07-21 Arno W. Peters <A.W.Peters@ieee.org>
|
||||||
|
|
||||||
|
* src/analysis/*: Moved these files into src/devices/analysis.
|
||||||
|
The files in this directory implement the analysis and simulation
|
||||||
|
for electrical circuits.
|
||||||
|
|
||||||
|
This is the final step to separating the Spice sources into a
|
||||||
|
library part and a frontend part. Now, the devices subdirectory
|
||||||
|
has to be renamed to spicelib and the devices that are now
|
||||||
|
scattered in that directory should be moved into a new devices
|
||||||
|
directory.
|
||||||
|
|
||||||
|
* configure.in, src/Makefile.am, src/devices/Makefile.am: Files
|
||||||
|
affected by the move.
|
||||||
|
|
||||||
2000-07-20 Arno W. Peters <A.W.Peters@ieee.org>
|
2000-07-20 Arno W. Peters <A.W.Peters@ieee.org>
|
||||||
|
|
||||||
* src/hlp/*: moved these files into src/frontend/help. The files
|
* src/hlp/*: moved these files into src/frontend/help. The files
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
## Process this file with automake to produce Makefile.in
|
||||||
|
|
||||||
SUBDIRS = misc maths analysis frontend devices include
|
SUBDIRS = misc maths frontend devices include
|
||||||
|
|
||||||
bin_PROGRAMS = ngspice nutmeg help sconvert proc2mod multidec makeidx
|
bin_PROGRAMS = ngspice nutmeg help sconvert proc2mod multidec makeidx
|
||||||
|
|
||||||
|
|
@ -57,7 +57,7 @@ ngspice_LDADD = \
|
||||||
frontend/libfte.a \
|
frontend/libfte.a \
|
||||||
frontend/plotting/libplotting.a \
|
frontend/plotting/libplotting.a \
|
||||||
$(DYNAMIC_DEVICELIBS) \
|
$(DYNAMIC_DEVICELIBS) \
|
||||||
analysis/libckt.a \
|
devices/analysis/libckt.a \
|
||||||
devices/libdev.a \
|
devices/libdev.a \
|
||||||
frontend/parser/libparser.a \
|
frontend/parser/libparser.a \
|
||||||
frontend/help/libhlp.a \
|
frontend/help/libhlp.a \
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
2000-07-21 Arno W. Peters <A.W.Peters@ieee.org>
|
||||||
|
|
||||||
|
* README: Updated.
|
||||||
|
|
||||||
2000-07-10 Arno W. Peters <A.W.Peters@ieee.org>
|
2000-07-10 Arno W. Peters <A.W.Peters@ieee.org>
|
||||||
|
|
||||||
* asrc/asrcinit.c, asrc/asrcitf.h, bjt/bjtinit.c, bjt/bjtitf.h,
|
* asrc/asrcinit.c, asrc/asrcitf.h, bjt/bjtinit.c, bjt/bjtitf.h,
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,7 @@ SUBDIRS = \
|
||||||
vccs \
|
vccs \
|
||||||
vcvs \
|
vcvs \
|
||||||
vsrc \
|
vsrc \
|
||||||
|
analysis \
|
||||||
parser
|
parser
|
||||||
|
|
||||||
lib_LIBRARIES = libdev.a
|
lib_LIBRARIES = libdev.a
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
The circuit builder.
|
The Spice Library.
|
||||||
|
|
||||||
It takes a circuit description and builds a simulator from it.
|
It takes a circuit description and builds a simulator from it.
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue