X-Git-Url: http://matita.cs.unibo.it/gitweb/?p=helm.git;a=blobdiff_plain;f=components%2Fng_kernel%2FMakefile;fp=components%2Fng_kernel%2FMakefile;h=1870f381c34227d76eba28280aa7b6f8849f15b2;hp=0000000000000000000000000000000000000000;hb=f61af501fb4608cc4fb062a0864c774e677f0d76;hpb=58ae1809c352e71e7b5530dc41e2bfc834e1aef1 diff --git a/components/ng_kernel/Makefile b/components/ng_kernel/Makefile new file mode 100644 index 000000000..1870f381c --- /dev/null +++ b/components/ng_kernel/Makefile @@ -0,0 +1,31 @@ +PACKAGE = ng_kernel +PREDICATES = + +INTERFACE_FILES = \ + nUri.mli \ + nReference.mli \ + nCicUtils.mli \ + nCicSubstitution.mli \ + oCic2NCic.mli \ + nCicEnvironment.mli \ + nCicPp.mli \ + nCicReduction.mli \ + nCicTypeChecker.mli \ + nCic2OCic.mli + +IMPLEMENTATION_FILES = \ + nCic.ml $(INTERFACE_FILES:%.mli=%.ml) +EXTRA_OBJECTS_TO_INSTALL = +EXTRA_OBJECTS_TO_CLEAN = +OCAMLOPTIONS += -w Ae + +all: rt check +%: %.ml $(PACKAGE).cma + $(OCAMLC) -package helm-$(PACKAGE) -linkpkg -o $@ $< +all.opt opt: rt.opt check.opt +%.opt: %.ml $(PACKAGE).cmxa + $(OCAMLOPT) -package helm-$(PACKAGE) -linkpkg -o $@ $< + + +include ../../Makefile.defs +include ../Makefile.common