From: "Al Morgan" Newsgroups: comp.os.msdos.djgpp Subject: Of Makefiles and Object Files Date: Mon, 14 Jun 1999 16:54:09 -0700 Organization: Posted via RemarQ Communities, Inc. Message-ID: <929404509.389.11@news.remarQ.com> NNTP-Posting-Host: 198.106.199.40 NNTP-Posting-Date: Mon, 14 Jun 1999 23:55:09 GMT X-Trace: 929404509.389.11 4VELK9AUPC728C66AC qube-02.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 Lines: 22 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com I've been doing C++ for many years, but I've been mostly using Borland C++ (3.1 I think), and using the editor that came with it, I never had any need to toy with .o files or makefiles. I know a .o file is something that comes in between the .cpp and the .exe, but what it is exactly? Also, what is the point of using makefiles, when I can just use a whole bunch of header files? Like this: #include #include #include void main() { ... } Where the header files would contain everything I would nee.