Date: Sat, 1 Nov 1997 10:16:24 -0800 (PST) Message-Id: <199711011816.KAA18622@adit.ap.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: rwh AT worldonline DOT nl, djgpp AT delorie DOT com From: Nate Eldredge Subject: Re: Library Precedence: bulk At 10:18 10/31/1997 +0100, Reinier Heeres wrote: >Hi! > >How do I make a library out of several source files in DJGPP? Compile them: gcc -c foo1.c gcc -c foo2.c ... gcc -c fooN.c Then use `ar' to create the library. ar qcs foo1.o foo2.o ... fooN.o See the info docs for `ar' (`info binutils ar') for more information on it. Nate Eldredge eldredge AT ap DOT net