Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!burl!ulysses!allegra!princeton!orsvax1!pyrnj!caip!im4u!ut-sally!pyramid!amiga!stan From: stan@amiga.UUCP (Stanley Shepard) Newsgroups: net.micro.amiga Subject: Amiga.lib Message-ID: <839@amiga.amiga.UUCP> Date: Mon, 10-Mar-86 14:07:51 EST Article-I.D.: amiga.839 Posted: Mon Mar 10 14:07:51 1986 Date-Received: Wed, 12-Mar-86 05:23:22 EST Reply-To: stan@coach.UUCP (Stanley Shepard) Organization: Commodore-Amiga Inc., 983 University Ave #D, Los Gatos CA 95030 Lines: 16 This posting is in answer to a recently asked question. The question was "How do I add modules to amiga.lib?" The Amiga library format is extremely simple. It is merely a concatenation of object modules. Therefore, once you have compiled (or assembled) a module (e.g. you have either a .o or a .obj module) you can add it to amiga.lib by simply using the join command. The following is a rough example. Join amiga.lib mysub.o ... AS ram:amiga.lib Copy ram:amiga.lib TO amiga.lib Note that you can make your own libraries this way and link them in along with lc.lib & amiga.lib. This should cut down on the size of some with files Stan