From: Marcus Rohrmoser Newsgroups: comp.os.msdos.djgpp Subject: Re: make problems Date: Thu, 12 Aug 1999 14:04:27 +0200 Organization: [posted via] Leibniz-Rechenzentrum, Muenchen (Germany) Lines: 18 Distribution: world Message-ID: <37B2B84B.52CFE26D@gmx.de> References: <7ordb3$ejf$1 AT elle DOT eunet DOT no> NNTP-Posting-Host: sun3.lrz-muenchen.de Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Mozilla 4.61 [en] (X11; I; SunOS 5.5.1 sun4m) X-Accept-Language: en To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com "Tom Arild Nęss" wrote: > > Hello! > > I'm having a problem using the DJGPP make in combination with the Lattice C > compiler (for M68K processors). The output looks like this: > > > make test.o > lc -cf -b0 -r0 -v -ccw -s -m2 -o.\ test ^^^ This directs the output into a file named ". test" which isn't possible on DOS filesystems. Use "-o./test" to get a file named "test" in the current directory. Maybe that's it. Marcus