]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/ng_kernel/Makefile
A new very simple example for recursive functions. Still bugged, but getting
[helm.git] / helm / software / components / ng_kernel / Makefile
index cda5a99504e3afc3d7f3ead1e76bd7ac8e0d4ad8..29e1fbe06890d1907b17d42eb68cd863d89c998f 100644 (file)
@@ -2,12 +2,27 @@ PACKAGE = ng_kernel
 PREDICATES =
 
 INTERFACE_FILES = \
-       nCicEnvironment.mli nCicTypeChecker.mli nReference.mli oCicTypeChecker.mli oCic2NCic.mli nUri.mli nCicSubstitution.mli nCicUtils.mli nCicReduction.mli nCic2OCic.mli
+       nUri.mli \
+       nReference.mli \
+       oCic2NCic.mli  \
+       nCicEnvironment.mli \
+       nCicTypeChecker.mli \
+       oCicTypeChecker.mli \
+       nCicUtils.mli \
+       nCicSubstitution.mli \
+       nCicReduction.mli \
+       nCic2OCic.mli
+
 IMPLEMENTATION_FILES = \
   nCic.ml $(INTERFACE_FILES:%.mli=%.ml)
 EXTRA_OBJECTS_TO_INSTALL = 
 EXTRA_OBJECTS_TO_CLEAN =
 OCAMLOPTIONS += -w Ae
 
+all: rt
+rt: rt.ml $(PACKAGE).cma
+       $(OCAMLC) -package helm-$(PACKAGE) -linkpkg -o $@ $<
+       
+
 include ../../Makefile.defs
 include ../Makefile.common