* 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:
arno 2000-07-20 16:26:14 +00:00
parent 57dfb0f945
commit df3cc8983d
61 changed files with 16 additions and 4 deletions

View File

@ -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 \

View File

@ -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

View File

@ -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

View File

@ -30,7 +30,8 @@ SUBDIRS = \
urc \
vccs \
vcvs \
vsrc
vsrc \
parser
lib_LIBRARIES = libdev.a

View File

@ -1,3 +1,4 @@
Makefile.in
Makefile
.deps
.libs