PACKAGE = utf8_macros REQUIRES = helm-pxp PREDICATES = # modules which have both a .ml and a .mli INTERFACE_FILES = utf8Macro.mli IMPLEMENTATION_FILES = utf8MacroTable.ml $(INTERFACE_FILES:%.mli=%.ml) EXTRA_OBJECTS_TO_INSTALL = EXTRA_OBJECTS_TO_CLEAN = all: utf8_macros.cma pa_unicode_macro.cma make_table: make_table.ml $(OCAMLFIND) ocamlc -package $(REQUIRES) -linkpkg -o $@ $^ utf8MacroTable.ml: make_table ./make_table $@ utf8MacroTable.cmo: utf8MacroTable.ml $(OCAMLFIND) ocamlc -c $< pa_unicode_macro.cmo: pa_unicode_macro.ml utf8Macro.cmo $(OCAMLFIND) ocamlc -package camlp4 -pp "camlp4o q_MLast.cmo pa_extend.cmo" -c $< pa_unicode_macro.cma: utf8MacroTable.cmo utf8Macro.cmo pa_unicode_macro.cmo $(OCAMLFIND) ocamlc -a -o $@ $^ .PHONY: test test: test.ml $(OCAMLFIND) ocamlc -package helm-utf8_macros -syntax camlp4o $< -o $@ clean: distclean: extra_clean extra_clean: rm -f make_table test include ../Makefile.common