home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / TRSICAT.LZX / CATS_CD2_TRSI / Reference_Library / lib_examples / makefile < prev    next >
Encoding:
Makefile  |  1992-08-21  |  538 b   |  19 lines

  1. # MAKEFILE for sample.library, sample.lib, and asm library test program
  2. # define linker command
  3. LINKER = Blink
  4.  
  5. all: sample.library sample.lib alibtest
  6.  
  7. sample.library: sample.library.o
  8.     $(LINKER) from sample.library.o to sample.library LIB lib:amiga.lib
  9.  
  10. sample.lib: sample_stubs.o sample_lvos.o
  11.     JOIN sample_stubs.o sample_lvos.o AS sample.lib
  12.  
  13. alibtest: alibtest.o
  14.   $(LINKER) from astartup.obj,alibtest.o to alibtest LIB lib:amiga.lib,sample.lib
  15.  
  16. # assembler command line for Adapt assembler
  17. .asm.o:
  18.     HX68 -A $*.asm -iINCLUDE: -o$*.o
  19.