From: Message-Id: <200302221801.h1MI1n220923@speedy.ludd.luth.se> Subject: Re: Moving djasm In-Reply-To: <3E57646F.245C7044@phekda.freeserve.co.uk> "from Richard Dawe at Feb 22, 2003 11:52:15 am" To: djgpp-workers AT delorie DOT com Date: Sat, 22 Feb 2003 19:01:49 +0100 (CET) X-Mailer: ELM [version 2.4ME+ PL78 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-MailScanner: Found to be clean Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk According to Richard Dawe: > ams AT ludd DOT luth DOT se wrote: > > As I said I've put djasm in it's own directory. However I have to > > leave "@include ../djasm/djasm.txi" in utils/utils.tex. I've tried to > > make make understand that it should make ../../info/djasm.info > > seperately while in djasm/ but it won't. It says "make.exe: *** No > > rule to make target `../../info/djasm.info', needed by `_alle'. Stop." > > > > I don't understand where the rule that manages to make > > ../../info/utils.info (while in utils/) comes from. (It's the making > > of that one I'm trying to copy/immitate.) > > > > Does anyone know where that rule is? > > Presumably you've added a line like this to src/utils/makefile: > > EXTRA_FILES += $(INFO)/djasm.inf Exactly. > The rule you are looking for is in src/makefile.inc: > > $(INFO)/%.inf : %.tex > makeinfo --no-split $< > > Hence you need to rename djasm.txi to djasm.tex or add a rule for making %.inf > from %.txi. Thanks! Anybody against adding this rule? (Isn't .tex an incorrect extension?) Right, MartinS