home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / n / newmat06.zip / EXAMPLE.MAK < prev    next >
Text File  |  1992-12-03  |  2KB  |  73 lines

  1.  
  2. OBJ  =  example.o                                          \
  3.         cholesky.o evalue.o fft.o hholder.o jacobi.o       \
  4.         newmat1.o newmat2.o newmat3.o newmat4.o newmat5.o  \
  5.         newmat6.o newmat7.o newmat8.o newmatrm.o           \
  6.         sort.o submat.o svd.o bandmat.o except.o newmatex.o
  7.  
  8. example:      $(OBJ)
  9.           g++ -o $@ $(OBJ) -lm
  10.  
  11. %.o:          %.cxx
  12.           g++ -c $*.cxx
  13.  
  14. newmatxx:     include.h newmat.h boolean.h except.h
  15.           rm -f newmatxx
  16.           echo "main .h files uptodate?" > newmatxx
  17.  
  18. except.o:     except.h except.cxx
  19.  
  20. newmatex.o:   newmatxx newmatex.cxx
  21.  
  22. example.o:    newmatxx newmatap.h example.cxx
  23.  
  24. cholesky.o:   newmatxx cholesky.cxx
  25.  
  26. evalue.o:     newmatxx newmatrm.h precisio.h evalue.cxx
  27.  
  28. fft.o:        newmatxx newmatap.h fft.cxx
  29.  
  30. hholder.o:    newmatxx newmatap.h hholder.cxx
  31.  
  32. jacobi.o:     newmatxx precisio.h newmatrm.h jacobi.cxx
  33.  
  34. bandmat.o:    newmatxx newmatrc.h controlw.h bandmat.cxx
  35.  
  36. newmat1.o:    newmatxx newmat1.cxx
  37.  
  38. newmat2.o:    newmatxx newmatrc.h controlw.h newmat2.cxx
  39.  
  40. newmat3.o:    newmatxx newmatrc.h controlw.h newmat3.cxx
  41.  
  42. newmat4.o:    newmatxx newmatrc.h controlw.h newmat4.cxx
  43.  
  44. newmat5.o:    newmatxx newmatrc.h controlw.h newmat5.cxx
  45.  
  46. newmat6.o:    newmatxx newmatrc.h controlw.h newmat6.cxx
  47.  
  48. newmat7.o:    newmatxx newmatrc.h controlw.h newmat7.cxx
  49.  
  50. newmat8.o:    newmatxx newmatap.h newmat8.cxx
  51.  
  52. newmat9.o:    newmatxx newmatrc.h controlw.h newmatio.h newmat9.cxx
  53.  
  54. newmatrm.o:   newmatxx newmatrm.h newmatrm.cxx
  55.  
  56. sort.o:       newmatxx newmatap.h sort.cxx
  57.  
  58. submat.o:     newmatxx newmatrc.h controlw.h submat.cxx
  59.  
  60. svd.o:        newmatxx newmatrm.h precisio.h svd.cxx
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.