home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / GFX / Converter / PHOGEN3.DMS / in.adf / DevDocs.lha / examples / bmp / makefile < prev   
Encoding:
Makefile  |  1995-03-30  |  523 b   |  28 lines

  1. # Makefile for Photogenics GIO files.
  2. # (C) Almathera 1994-1995. All Rights Reserved
  3.  
  4.  
  5. all:    BMP.gio 
  6.  
  7. .c.o:
  8.     sc nostackcheck DATA=FAR $*.c 
  9.  
  10. .asm.obj:
  11.     genam $*.asm to $*asm.obj
  12.  
  13.  
  14.  
  15. BMPasm.obj: BMP.asm
  16.  
  17. BMP.o: BMP.c
  18.  
  19. #This first slink creates a library with debug information
  20.  
  21. BMP.debug: BMP.o BMPasm.obj
  22.     slink from BMP.o,BMPasm.obj lib lib:sc.lib,lib:amiga.lib to BMP.gio noicons
  23.  
  24. #Now we copy it using slink, at the same time stripping debug info out.
  25.  
  26. BMP.gio: BMP.debug
  27.     slink from BMP.debug to BMP.gio nodebug noicons
  28.