| 12345678910111213141516171819202122 |
- RESULT := civicc
- PHASES := load parse print desug context_analysis expand_dims typecheck \
- dim_reduce bool_op
- SOURCES := ast.ml util.mli util.ml lexer.mll parser.mly stringify.mli \
- stringify.ml $(patsubst %,phases/%.ml,$(PHASES)) main.ml
- PRE_TARGETS := ast.cmi ast.o util.cmi util.o
- LIBS := str unix
- OCAMLFLAGS := -g
- OCAMLYACC := menhir
- YFLAGS := --infer
- all: native-code
- clean:: myclean
- .PHONY: myclean
- myclean:
- rm -f a.out
- include OCamlMakefile
|