Date: Sun, 29 Dec 1996 09:38:20 +0200 (IST) From: Eli Zaretskii To: John Lathrop cc: "djgpp AT delorie DOT com" Subject: Re: Help With Make File In-Reply-To: <199612290409.UAA18713@almond.elite.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Sat, 28 Dec 1996, John Lathrop wrote: > but, I get the message "d:/djgpp/bin\ld.exe: cannot open -ltap: No such file > or directory (ENOENT)". Nevertheless, everything works when I copy libtap.a > to d:/djgpp/lib/. You need to add -L. to the gcc switches, for it to find libtap.a in any directory other than d:/djgpp/lib (which is searched by default). > 2. Related to the above problem, isn't the following supposed to force a > search of the current directory for libtap.a: > > L_PARAMS=-Wall -I./ $(DEBUG) -o No, -I. only searches for include files. Use -L. for libraries.