home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 100-199 / ff131.lzh / Life / makefile < prev    next >
Makefile  |  1988-03-14  |  314b  |  15 lines

  1. life: life.o blit.o readin.o
  2.     ln -o life life.o blit.o readin.o -lc
  3.  
  4. structures.b: structures.h
  5.     cc -b -a +hstructures.b structures.h
  6.  
  7. blit.o: blit.c structures.b
  8.     cc -b +istructures.b blit.c
  9.  
  10. life.o: life.c structures.b
  11.     cc -b +istructures.b life.c
  12.  
  13. readin.o: readin.c structures.b
  14.     cc -b +istructures.b readin.c
  15.