home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Assembler / DVD!OMA2.DMS / in.adf / Examples / Startup / makefile < prev    next >
Encoding:
Makefile  |  1994-10-13  |  247 b   |  15 lines

  1. # Makefile für Startup-Module
  2.  
  3. startup.obj: startup.asm
  4.    oma startup.asm -m -i ainc:
  5.  
  6. cli.obj: cli.asm
  7.    oma cli.asm -m -i ainc:
  8.  
  9. test.obj: test.asm
  10.    oma test.asm -m -i ainc:
  11.  
  12. test: startup.obj test.obj
  13.    dlink startup.obj,test.obj to test
  14.  
  15.