home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d3xx / d306 / tree.lha / 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.