stan@amiga.UUCP (Stanley Shepard) (03/10/86)
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