home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Assembler / DVD!OMA2.DMS / in.adf / Examples / Library / Misc / makefile next >
Encoding:
Makefile  |  1994-10-13  |  1.4 KB  |  42 lines

  1. # Makefile für verschiedene Interfaces
  2.  
  3. Misc.lib: Misc.asm
  4.  OMA Misc.asm -o OBJ/00 -c s -d PotgoOFFSETS
  5.  OMA Misc.asm -o OBJ/01 -c s -d AllocPotBits
  6.  OMA Misc.asm -o OBJ/02 -c s -d FreePotBits
  7.  OMA Misc.asm -o OBJ/03 -c s -d WritePotgo
  8.  
  9.  OMA Misc.asm -o OBJ/10 -c s -d TimerOFFSETS
  10.  OMA Misc.asm -o OBJ/11 -c s -d AddTime
  11.  OMA Misc.asm -o OBJ/12 -c s -d SubTime
  12.  OMA Misc.asm -o OBJ/13 -c s -d CmpTime
  13.  
  14.  OMA Misc.asm -o OBJ/20 -c s -d TranslatorOFFSETS
  15.  OMA Misc.asm -o OBJ/21 -c s -d Translate
  16.  
  17.  OMA Misc.asm -o OBJ/30 -c s -d ConsoleOFFSETS
  18.  OMA Misc.asm -o OBJ/31 -c s -d CDInputHandler
  19.  OMA Misc.asm -o OBJ/32 -c s -d RawKeyConvert
  20.  OMA Misc.asm -o OBJ/33 -c s -d AskDefaultKeyMap
  21.  OMA Misc.asm -o OBJ/34 -c s -d SetDefaultKeyMap
  22.  
  23.  OMA Misc.asm -o OBJ/40 -c s -d DiskfontOFFSETS
  24.  OMA Misc.asm -o OBJ/41 -c s -d OpenDiskFont
  25.  OMA Misc.asm -o OBJ/42 -c s -d AvailFonts
  26.  OMA Misc.asm -o OBJ/43 -c s -d NewFontContents
  27.  OMA Misc.asm -o OBJ/44 -c s -d DisposeFontContents
  28.  
  29.  OMA Misc.asm -o OBJ/50 -c s -d RomBootOFFSETS
  30.  OMA Misc.asm -o OBJ/51 -c s -d RomBoot
  31.  
  32.  join OBJ/00 OBJ/01 OBJ/02 OBJ/03 TO ram:a.0
  33.  join OBJ/10 OBJ/11 OBJ/12 OBJ/13 TO ram:a.1
  34.  join OBJ/20 OBJ/21 TO ram:a.2
  35.  join OBJ/30 OBJ/31 OBJ/32 OBJ/33 OBJ/34 TO ram:a.3
  36.  join OBJ/40 OBJ/41 OBJ/42 OBJ/43 OBJ/44 TO ram:a.4
  37.  join OBJ/50 OBJ/51 TO ram:a.5
  38.  join ram:a.0 ram:a.1 ram:a.2 ram:a.3 ram:a.4 ram:a.5 TO Misc.lib
  39.  delete ram:a.0 ram:a.1 ram:a.2 ram:a.3 ram:a.4 ram:a.5
  40.  
  41. # Makefile-Ende
  42.