home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 262.lha / IffLibrary_v1.3 / makefile < prev    next >
Makefile  |  1989-07-04  |  297b  |  30 lines

  1.  
  2. OBJ1=shopict.o printer.o iff.o
  3.  
  4. OBJ3=shoimg.o iff.o
  5.  
  6. .c.o:
  7.    cc -O $*.o $*.c
  8.  
  9. .asm.o:
  10.    as $*.asm
  11.  
  12. all: shopict shoimg
  13.  
  14. shopict: $(OBJ1)
  15.    ln -O shopict $(OBJ1) -lc
  16.  
  17. shoimg: $(OBJ3)
  18.    ln -O shoimg $(OBJ3) -lc
  19.  
  20. shoimg.o: shoimg.c
  21.  
  22. shopict.o: shopict.c
  23.  
  24. printer.o: printer.c
  25.  
  26. iff.o: iff.asm
  27.  
  28.  
  29.  
  30.