From: "Al Morgan" Newsgroups: comp.os.msdos.djgpp Subject: Re: Newby Question Date: Mon, 14 Jun 1999 16:44:59 -0700 Organization: Posted via RemarQ Communities, Inc. Lines: 11 Message-ID: <929403957.546.59@news.remarQ.com> References: <37655EBE DOT AFFC1A20 AT iocorp DOT com> NNTP-Posting-Host: 198.106.199.40 NNTP-Posting-Date: Mon, 14 Jun 1999 23:45:57 GMT X-Trace: 929403957.546.59 4VELK9AUPC728C66AC qube-01.us-ca.remarq.com X-Complaints-To: newsabuse AT remarQ DOT com X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com The reason you don't get a .EXE file when you compile it this: when you compile the program, it first compiles it to a .O file, then /links/ the .o file to make an .EXE. So you want to "Make" instead of "Compile", making will compiler, link, and all that stuff, leaving you with a .EXE. This is used for... well, I'm not sure exactly how object files are used, but I know when you make large programs using makefiles, you get a bunch of them.