From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 102b9a,a26e6382b43311b5 X-Google-Attributes: gid102b9a,public X-Google-Thread: 103376,a26e6382b43311b5 X-Google-Attributes: gid103376,public From: Stephen Leake Subject: Re: Combining Rational VADS and Emacs Date: 1999/11/03 Message-ID: #1/1 X-Deja-AN: 544025667 References: <381959FE.886DFC86@rdel.co.uk> Organization: NASA Goddard Space Flight Center -- Greenbelt, Maryland USA Newsgroups: comp.lang.ada,comp.emacs Date: 1999-11-03T00:00:00+00:00 List-Id: Jon Klaff writes: > We have a directory structure as follows; > > Project > Sub-module > Edited Files > Source Files > > The ideology is that a file is edited in the > Edited Files directory and then moved into the > Source Files directory for compilation. This seems like it will be extremely error-prone. You'll either forget to copy the edited file (hence your request for a tool), or you'll start editing in the Source directory. I suggest you leave the source code in one directory, and use CVS to manage the version history. See www.cyclic.com for the current CVS distribution. > A makefile > exists in the Sub-module directory in order to > make the sub-module (and one in the Project > directory to do the entire project). I would like > to be able to automatically copy files from the > edited files directory into the source files > directory, move up a directory and run the make > command from there. You can easily run make from emacs; see the emacs help on 'compile'. > and trying to get EMACS to work with it. I do not > have the first clue where to start though. See the general Emacs web site: http://www.gnu.org/software/emacs/emacs.html there are lots of sources of information on how to use emacs. -- Stephe