From: Michael Wright Newsgroups: comp.os.msdos.djgpp Subject: Re: Lib making Date: Thu, 09 Jan 1997 00:08:25 -0500 Organization: Tallahassee Free-Net Lines: 29 Message-ID: <32D47D49.297D@Nxus.com> References: Reply-To: Mikey AT Nxus DOT com NNTP-Posting-Host: fts4p13-bfs.scri.fsu.edu Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Moo-Juice wrote: > > Hi all, > > I have just finished version 1.0 of my map class for allegro which > basically produces maps using tile banks etc,etc... > > I now wish to distribute this to the rest of the DJGPP community. > > I have my map class done, and I now want to turn this into something > like 'libmap.a'. How do I go about this? > > Now the whole thing is a class, is there anything special I need to do > to it? > > Hope you guys can help :) > > -- > Moo-Juice It can be done as easily as: "ar ra libmap.a map*.o" Then you could compile with -lmap to include... This information is described in much greater detail in the info package for DGGPPv2. I would, however recomend distrubiting the sources instead, as it would allow the modules to be compiled readily on other systems, thus ensuring portability. -Mikey AT Nxus DOT com