* src/circuit/*: moved these files into src/devices/parser. The
files in this directory take a model line from the input file and add the corresponding element to the representation of the circuit in memory. * configure.in, src/Makefile.am, src/devices/Makefile.am: Files affected by the move.
This commit is contained in:
parent
57dfb0f945
commit
df3cc8983d
|
|
@ -198,7 +198,6 @@ man/Makefile \
|
|||
man/man1/Makefile \
|
||||
src/Makefile \
|
||||
src/analysis/Makefile \
|
||||
src/circuit/Makefile \
|
||||
src/devices/Makefile \
|
||||
src/devices/asrc/Makefile \
|
||||
src/devices/bjt/Makefile \
|
||||
|
|
@ -230,6 +229,7 @@ src/devices/urc/Makefile \
|
|||
src/devices/vccs/Makefile \
|
||||
src/devices/vcvs/Makefile \
|
||||
src/devices/vsrc/Makefile \
|
||||
src/devices/parser/Makefile \
|
||||
src/frontend/Makefile \
|
||||
src/frontend/plotting/Makefile \
|
||||
src/hlp/Makefile \
|
||||
|
|
|
|||
|
|
@ -1,3 +1,13 @@
|
|||
2000-07-20 Arno W. Peters <A.W.Peters@ieee.org>
|
||||
|
||||
* src/circuit/*: moved these files into src/devices/parser. The
|
||||
files in this directory take a model line from the input file and
|
||||
add the corresponding element to the representation of
|
||||
the circuit in memory.
|
||||
|
||||
* configure.in, src/Makefile.am, src/devices/Makefile.am: Files
|
||||
affected by the move.
|
||||
|
||||
2000-07-18 Arno W. Peters <A.W.Peters@ieee.org>
|
||||
|
||||
* main.c: Added the call to the initialization function of the
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ ngspice_LDADD = \
|
|||
devices/libdev.a \
|
||||
parser/libparser.a \
|
||||
hlp/libhlp.a \
|
||||
circuit/libinp.a \
|
||||
devices/parser/libinp.a \
|
||||
maths/deriv/libderiv.a \
|
||||
maths/cmaths/libcmaths.a \
|
||||
maths/poly/libpoly.a \
|
||||
|
|
@ -121,7 +121,7 @@ proc2mod_SOURCES = proc2mod.c
|
|||
|
||||
proc2mod_LDADD = \
|
||||
parser/libparser.a \
|
||||
circuit/libinp.a \
|
||||
devices/parser/libinp.a \
|
||||
misc/libmisc.a
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -30,7 +30,8 @@ SUBDIRS = \
|
|||
urc \
|
||||
vccs \
|
||||
vcvs \
|
||||
vsrc
|
||||
vsrc \
|
||||
parser
|
||||
|
||||
lib_LIBRARIES = libdev.a
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
Makefile.in
|
||||
Makefile
|
||||
.deps
|
||||
.libs
|
||||
Loading…
Reference in New Issue