home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff306.lzh / Tree / Makefile < prev    next >
Makefile  |  1990-01-11  |  216b  |  19 lines

  1. # compile me with Manx 3.6; never tried Lattice on these yet . . .
  2.  
  3. all: sort tree
  4.  
  5. tree: tree.o
  6.     ln tree.o -lc
  7.  
  8. tree.o: tree.c
  9.     cc tree.c
  10.  
  11. sort: sort.o
  12.     ln sort.o -lc
  13.  
  14. sort.o: sort.c
  15.     cc sort.c
  16.  
  17. clean:
  18.     delete #?.o
  19.