* src/hlp/*: moved these files into src/frontend/help. The files
in this directory implement the help system for the frontend. * configure.in, src/Makefile.am, src/frontend/Makefile.am: Files affected by the move.
This commit is contained in:
parent
df3cc8983d
commit
63b283f982
|
|
@ -232,7 +232,7 @@ src/devices/vsrc/Makefile \
|
||||||
src/devices/parser/Makefile \
|
src/devices/parser/Makefile \
|
||||||
src/frontend/Makefile \
|
src/frontend/Makefile \
|
||||||
src/frontend/plotting/Makefile \
|
src/frontend/plotting/Makefile \
|
||||||
src/hlp/Makefile \
|
src/frontend/help/Makefile \
|
||||||
src/include/Makefile \
|
src/include/Makefile \
|
||||||
src/maths/Makefile \
|
src/maths/Makefile \
|
||||||
src/maths/cmaths/Makefile \
|
src/maths/cmaths/Makefile \
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,11 @@
|
||||||
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
|
||||||
|
in this directory implement the help system for the frontend.
|
||||||
|
|
||||||
|
* configure.in, src/Makefile.am, src/frontend/Makefile.am: Files
|
||||||
|
affected by the move.
|
||||||
|
|
||||||
* src/circuit/*: moved these files into src/devices/parser. The
|
* src/circuit/*: moved these files into src/devices/parser. The
|
||||||
files in this directory take a model line from the input file and
|
files in this directory take a model line from the input file and
|
||||||
add the corresponding element to the representation of
|
add the corresponding element to the representation of
|
||||||
|
|
|
||||||
|
|
@ -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 circuit frontend hlp parser devices include
|
SUBDIRS = misc maths analysis frontend parser devices include
|
||||||
|
|
||||||
bin_PROGRAMS = ngspice nutmeg help sconvert proc2mod multidec makeidx
|
bin_PROGRAMS = ngspice nutmeg help sconvert proc2mod multidec makeidx
|
||||||
|
|
||||||
|
|
@ -60,7 +60,7 @@ ngspice_LDADD = \
|
||||||
analysis/libckt.a \
|
analysis/libckt.a \
|
||||||
devices/libdev.a \
|
devices/libdev.a \
|
||||||
parser/libparser.a \
|
parser/libparser.a \
|
||||||
hlp/libhlp.a \
|
frontend/help/libhlp.a \
|
||||||
devices/parser/libinp.a \
|
devices/parser/libinp.a \
|
||||||
maths/deriv/libderiv.a \
|
maths/deriv/libderiv.a \
|
||||||
maths/cmaths/libcmaths.a \
|
maths/cmaths/libcmaths.a \
|
||||||
|
|
@ -85,7 +85,7 @@ nutmeg_LDADD = \
|
||||||
frontend/libfte.a \
|
frontend/libfte.a \
|
||||||
frontend/plotting/libplotting.a \
|
frontend/plotting/libplotting.a \
|
||||||
parser/libparser.a \
|
parser/libparser.a \
|
||||||
hlp/libhlp.a \
|
frontend/help/libhlp.a \
|
||||||
maths/cmaths/libcmaths.a \
|
maths/cmaths/libcmaths.a \
|
||||||
maths/poly/libpoly.a \
|
maths/poly/libpoly.a \
|
||||||
misc/libmisc.a
|
misc/libmisc.a
|
||||||
|
|
@ -97,7 +97,7 @@ nutmeg_LDADD = \
|
||||||
help_SOURCES = help.c
|
help_SOURCES = help.c
|
||||||
|
|
||||||
help_LDADD = \
|
help_LDADD = \
|
||||||
hlp/libhlp.a \
|
frontend/hlp/libhlp.a \
|
||||||
parser/libparser.a \
|
parser/libparser.a \
|
||||||
frontend/libfte.a \
|
frontend/libfte.a \
|
||||||
misc/libmisc.a
|
misc/libmisc.a
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
## Process this file with automake to produce Makefile.in
|
||||||
|
|
||||||
SUBDIRS = plotting
|
SUBDIRS = plotting help
|
||||||
|
|
||||||
noinst_LIBRARIES = libfte.a
|
noinst_LIBRARIES = libfte.a
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue