home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / GFX / Converter / DC-PGS21.DMS / in.adf / Extras / DevDocs.LHA / DeveloperDocs / examples / efx / makefile < prev    next >
Encoding:
Makefile  |  1996-06-03  |  633 b   |  31 lines

  1. # Makefile for Photogenics EFX files.
  2. # (C) Almathera 1994-1996. All Rights Reserved
  3.  
  4. all:    Negative.efx \
  5.         Balance.efx 
  6.  
  7. .c.o:
  8.     sc nostackcheck $*.c
  9.  
  10. .asm.obj:
  11.     genam $*.asm to $*.obj
  12.  
  13.  
  14. #= Negative ===========================================
  15.  
  16. Negative.obj: Negative.asm
  17.  
  18. Negative.o: Negative.c
  19.  
  20. Negative.efx: Negative.o Negative.obj
  21.     slink from Negative.o,Negative.obj lib lib:sc.lib,lib:amiga.lib to Negative.efx
  22.  
  23. #= Balance ===========================================
  24.  
  25. Balance.obj: Balance.asm
  26.  
  27. Balance.o: Balance.c
  28.  
  29. Balance.efx: Balance.o Balance.obj
  30.     slink from Balance.o,Balance.obj lib lib:sc.lib,lib:amiga.lib to Balance.efx
  31.