home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 3 / RISC_DISC_3.iso / resources / etexts / gems / gemsi / sturm / makefile. < prev    next >
Makefile  |  1992-09-08  |  211b  |  13 lines

  1. #
  2. # Makefile
  3. #
  4. #    command file for make to compile the solver.
  5.  
  6. solve: main.o sturm.o util.o
  7.     cc -o solve main.o sturm.o util.o -lm
  8.  
  9. clean:
  10.     /bin/rm -f main.o sturm.o util.o solve
  11.  
  12. main.o sturm.o util.o: solve.h
  13.