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

  1. # Makefile für Mathematik-Routinen
  2.  
  3. Math.lib: Math.asm
  4.  OMA Math.asm -o OBJ/00 -c sd -d MulDiv16
  5.  OMA Math.asm -o OBJ/01 -c sd -d MulDiv32
  6.  
  7.  join OBJ/00 OBJ/01  TO Math.lib
  8.  
  9.  
  10. Convert.lib: Convert.asm
  11.  OMA Convert.asm -o OBJ/10 -c sd -d afp_c
  12.  OMA Convert.asm -o OBJ/11 -c sd -d afp_a -m
  13.  OMA Convert.asm -o OBJ/12 -c sd -d fpa_c
  14.  OMA Convert.asm -o OBJ/13 -c sd -d fpa_a -m
  15.  
  16.  join OBJ/10 OBJ/11 OBJ/12 OBJ/13  TO Convert.lib
  17.  
  18. # Makefile-Ende
  19.