home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Assembler / DVD!OMA2.DMS / in.adf / Examples / Library / Layers / makefile < prev   
Encoding:
Makefile  |  1994-10-13  |  1.6 KB  |  38 lines

  1. # Makefile für Layers-C-Interface
  2.  
  3. Layers.lib: Layers.asm
  4.  OMA Layers.asm -o OBJ/00 -c s -d InitLayers
  5.  OMA Layers.asm -o OBJ/01 -c s -d CreateUpfrontLayer
  6.  OMA Layers.asm -o OBJ/02 -c s -d CreateBehindLayer
  7.  OMA Layers.asm -o OBJ/03 -c s -d UpfrontLayer
  8.  OMA Layers.asm -o OBJ/04 -c s -d BehindLayer
  9.  OMA Layers.asm -o OBJ/05 -c s -d MoveLayer
  10.  OMA Layers.asm -o OBJ/06 -c s -d SizeLayer
  11.  OMA Layers.asm -o OBJ/07 -c s -d ScrollLayer
  12.  OMA Layers.asm -o OBJ/08 -c s -d BeginUpdate
  13.  OMA Layers.asm -o OBJ/09 -c s -d EndUpdate
  14.  OMA Layers.asm -o OBJ/10 -c s -d DeleteLayer
  15.  OMA Layers.asm -o OBJ/11 -c s -d LockLayer
  16.  OMA Layers.asm -o OBJ/12 -c s -d UnlockLayer
  17.  OMA Layers.asm -o OBJ/13 -c s -d LockLayers
  18.  OMA Layers.asm -o OBJ/14 -c s -d UnlockLayers
  19.  OMA Layers.asm -o OBJ/15 -c s -d LockLayerInfo
  20.  OMA Layers.asm -o OBJ/16 -c s -d SwapBitsRastPortClipRect
  21.  OMA Layers.asm -o OBJ/17 -c s -d WhichLayer
  22.  OMA Layers.asm -o OBJ/18 -c s -d UnlockLayerInfo
  23.  OMA Layers.asm -o OBJ/19 -c s -d NewLayerInfo
  24.  OMA Layers.asm -o OBJ/20 -c s -d DisposeLayerInfo
  25.  OMA Layers.asm -o OBJ/21 -c s -d FattenLayerInfo
  26.  OMA Layers.asm -o OBJ/22 -c s -d ThinLayerInfo
  27.  OMA Layers.asm -o OBJ/23 -c s -d MoveLayerInFrontOf
  28.  OMA Layers.asm -o OBJ/24 -c s -d InstallClipRegion
  29.  OMA Layers.asm -o OBJ/OFF -c s -d OFFSETS
  30.  
  31.  join OBJ/00 OBJ/01 OBJ/02 OBJ/03 OBJ/04 OBJ/05 OBJ/06 OBJ/07 TO ram:l.0
  32.  join OBJ/08 OBJ/09 OBJ/10 OBJ/11 OBJ/12 OBJ/13 OBJ/14 OBJ/15 TO ram:l.1
  33.  join OBJ/16 OBJ/17 OBJ/18 OBJ/19 OBJ/20 OBJ/21 OBJ/22 OBJ/23 OBJ/24 TO ram:l.2
  34.  join OBJ/OFF ram:l.0 ram:l.1 ram:l.2 TO Layers.lib
  35.  delete ram:l.0 ram:l.1 ram:l.2
  36.  
  37. # Makefile-Ende
  38.