home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / Caml Light 0.7 / examples / kb / Makefile < prev    next >
Encoding:
Makefile  |  1995-06-18  |  391 b   |  20 lines  |  [TEXT/MPS ]

  1. CAMLC = camlc
  2.  
  3. all ƒ kb
  4.  
  5. kb ƒ prelude.zo terms.zo equation.zo order.zo kb.zo go.zo
  6.     {CAMLC} prelude.zo terms.zo equation.zo order.zo kb.zo go.zo -o kb
  7.  
  8. clean ƒ
  9.     delete -i kb
  10.     delete -i ≈.z[io] ||echo
  11.     delete -i ≈.zix ||echo
  12.  
  13. .zo ƒ .ml
  14.     {CAMLC} -c {default}.ml
  15.  
  16. equation.zo ƒ prelude.zo terms.zo 
  17. go.zo ƒ order.zo kb.zo terms.zo 
  18. kb.zo ƒ equation.zo prelude.zo terms.zo 
  19. order.zo ƒ terms.zo 
  20.