From 63b283f9829049d388d6cb1428c851331fa2ba92 Mon Sep 17 00:00:00 2001 From: arno Date: Thu, 20 Jul 2000 20:33:26 +0000 Subject: [PATCH] * 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. --- configure.in | 2 +- src/ChangeLog | 6 ++++++ src/Makefile.am | 8 ++++---- src/frontend/Makefile.am | 2 +- src/{hlp => frontend/help}/.cvsignore | 0 src/{hlp => frontend/help}/ChangeLog | 0 src/{hlp => frontend/help}/Makefile.am | 0 src/{hlp => frontend/help}/help.c | 0 src/{hlp => frontend/help}/provide.c | 0 src/{hlp => frontend/help}/readhelp.c | 0 src/{hlp => frontend/help}/textdisp.c | 0 src/{hlp => frontend/help}/x11disp.c | 0 src/{hlp => frontend/help}/xdisplay.c | 0 13 files changed, 12 insertions(+), 6 deletions(-) rename src/{hlp => frontend/help}/.cvsignore (100%) rename src/{hlp => frontend/help}/ChangeLog (100%) rename src/{hlp => frontend/help}/Makefile.am (100%) rename src/{hlp => frontend/help}/help.c (100%) rename src/{hlp => frontend/help}/provide.c (100%) rename src/{hlp => frontend/help}/readhelp.c (100%) rename src/{hlp => frontend/help}/textdisp.c (100%) rename src/{hlp => frontend/help}/x11disp.c (100%) rename src/{hlp => frontend/help}/xdisplay.c (100%) diff --git a/configure.in b/configure.in index bf9382957..0251d398a 100644 --- a/configure.in +++ b/configure.in @@ -232,7 +232,7 @@ src/devices/vsrc/Makefile \ src/devices/parser/Makefile \ src/frontend/Makefile \ src/frontend/plotting/Makefile \ -src/hlp/Makefile \ +src/frontend/help/Makefile \ src/include/Makefile \ src/maths/Makefile \ src/maths/cmaths/Makefile \ diff --git a/src/ChangeLog b/src/ChangeLog index de4ffaa52..d3b6fff09 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,11 @@ 2000-07-20 Arno W. Peters + * 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 files in this directory take a model line from the input file and add the corresponding element to the representation of diff --git a/src/Makefile.am b/src/Makefile.am index 02553287b..37419406f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,6 +1,6 @@ ## 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 @@ -60,7 +60,7 @@ ngspice_LDADD = \ analysis/libckt.a \ devices/libdev.a \ parser/libparser.a \ - hlp/libhlp.a \ + frontend/help/libhlp.a \ devices/parser/libinp.a \ maths/deriv/libderiv.a \ maths/cmaths/libcmaths.a \ @@ -85,7 +85,7 @@ nutmeg_LDADD = \ frontend/libfte.a \ frontend/plotting/libplotting.a \ parser/libparser.a \ - hlp/libhlp.a \ + frontend/help/libhlp.a \ maths/cmaths/libcmaths.a \ maths/poly/libpoly.a \ misc/libmisc.a @@ -97,7 +97,7 @@ nutmeg_LDADD = \ help_SOURCES = help.c help_LDADD = \ - hlp/libhlp.a \ + frontend/hlp/libhlp.a \ parser/libparser.a \ frontend/libfte.a \ misc/libmisc.a diff --git a/src/frontend/Makefile.am b/src/frontend/Makefile.am index 97a93a284..8dd28fa77 100644 --- a/src/frontend/Makefile.am +++ b/src/frontend/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in -SUBDIRS = plotting +SUBDIRS = plotting help noinst_LIBRARIES = libfte.a diff --git a/src/hlp/.cvsignore b/src/frontend/help/.cvsignore similarity index 100% rename from src/hlp/.cvsignore rename to src/frontend/help/.cvsignore diff --git a/src/hlp/ChangeLog b/src/frontend/help/ChangeLog similarity index 100% rename from src/hlp/ChangeLog rename to src/frontend/help/ChangeLog diff --git a/src/hlp/Makefile.am b/src/frontend/help/Makefile.am similarity index 100% rename from src/hlp/Makefile.am rename to src/frontend/help/Makefile.am diff --git a/src/hlp/help.c b/src/frontend/help/help.c similarity index 100% rename from src/hlp/help.c rename to src/frontend/help/help.c diff --git a/src/hlp/provide.c b/src/frontend/help/provide.c similarity index 100% rename from src/hlp/provide.c rename to src/frontend/help/provide.c diff --git a/src/hlp/readhelp.c b/src/frontend/help/readhelp.c similarity index 100% rename from src/hlp/readhelp.c rename to src/frontend/help/readhelp.c diff --git a/src/hlp/textdisp.c b/src/frontend/help/textdisp.c similarity index 100% rename from src/hlp/textdisp.c rename to src/frontend/help/textdisp.c diff --git a/src/hlp/x11disp.c b/src/frontend/help/x11disp.c similarity index 100% rename from src/hlp/x11disp.c rename to src/frontend/help/x11disp.c diff --git a/src/hlp/xdisplay.c b/src/frontend/help/xdisplay.c similarity index 100% rename from src/hlp/xdisplay.c rename to src/frontend/help/xdisplay.c