Date: Mon, 7 Sep 1998 08:45:37 -0200 (GMT+2) From: Balazs Miklos To: djgpp AT delorie DOT com Subject: Re: need help with make In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk Hi again! Sorry for replying to my own mail, but I've found the problem: NASM uses an environment variable called 'NASM', and I did an EXPORT NASM = nasm in the makefile. When i changed it to EXPORT ASM = nasm it worked! (the problem was that i didn't knew that make uses environment variables...) On Sun, 6 Sep 1998, Balazs Miklos wrote: > Hi! > I have two makefiles, the second is called from the first. > In the second makefile, I need to call 'nasm', and I do it using the > variables exported from the first makefile (I have tried it to call > directly). When nasm runs, it sais: more than one input file specified. > If I type in a shell exactly the same command line make executed, it > works. What could be the problem? >