# A sauver sous le nom Makefile ou bien faire test: poly polytest.ml @echo '=== Verification des egalites ' @ocaml polytest.ml @echo '=== Evaluation de 1 + 2X + X^2 en des points de type float' @sh poly.sh ####################### Mandatory User's variables ##################### # # The Caml sources (including camlyacc and camllex source files) SOURCES = polynome.ml poly.ml EXEC = poly ########################## Optional user's variables ##################### # # The list of Caml libraries needed by the program # For instance: # LIBS=$(GRAPHICS) $(UNIX) $(STR) $(NUMS) $(THREADS) $(DBM) # Should be set to -custom if you use any of the libraries above # or if any C code have to be linked with your program # (irrelevant for ocamlopt) # CUSTOM=-custom ########################## Include the template here ##################### include ~remy/lib/Makefile.ocaml ########################## Continue customization ##################### # The Caml compilers. # You may fix here the path to access the Caml compiler on your machine # You may also have to add various -I options. CAMLC = ocamlc -g # CAMLOPT = ocamlopt # CAMLDEP = ocamldep # CAMLLEX = ocamllex # CAMLYACC = ocamlyacc