]> matita.cs.unibo.it Git - helm.git/commitdiff
added build time configuration of the whole components/ dir
authorStefano Zacchiroli <zack@upsilon.cc>
Fri, 3 Feb 2006 15:14:49 +0000 (15:14 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Fri, 3 Feb 2006 15:14:49 +0000 (15:14 +0000)
helm/ocaml/extlib/.depend
helm/ocaml/extlib/Makefile
helm/ocaml/extlib/componentsConf.ml.in [new file with mode: 0644]
helm/ocaml/extlib/componentsConf.mli [new file with mode: 0644]

index b11273f7a0ef3a63dde1eba84b2130f2f41610a1..e2c9fc2b880185f06badbb75ffefea721ffe3b58 100644 (file)
@@ -1,5 +1,7 @@
-hExtlib.cmo: hExtlib.cmi 
-hExtlib.cmx: hExtlib.cmi 
+componentsConf.cmo: componentsConf.cmi 
+componentsConf.cmx: componentsConf.cmi 
+hExtlib.cmo: componentsConf.cmi hExtlib.cmi 
+hExtlib.cmx: componentsConf.cmx hExtlib.cmi 
 hMarshal.cmo: hExtlib.cmi hMarshal.cmi 
 hMarshal.cmx: hExtlib.cmx hMarshal.cmi 
 patternMatcher.cmo: patternMatcher.cmi 
index d2e5cddf62f62c8ed6e08e70696703a618e528f6..4e5c9b5a91525b0b809a2e49b1c9ac83e634349f 100644 (file)
@@ -2,6 +2,7 @@ PACKAGE = extlib
 PREDICATES =
 
 INTERFACE_FILES =              \
+       componentsConf.mli      \
         hExtlib.mli            \
        hMarshal.mli            \
        patternMatcher.mli      \
diff --git a/helm/ocaml/extlib/componentsConf.ml.in b/helm/ocaml/extlib/componentsConf.ml.in
new file mode 100644 (file)
index 0000000..528e90a
--- /dev/null
@@ -0,0 +1,28 @@
+(* Copyright (C) 2006, HELM Team.
+ * 
+ * This file is part of HELM, an Hypertextual, Electronic
+ * Library of Mathematics, developed at the Computer Science
+ * Department, University of Bologna, Italy.
+ * 
+ * HELM is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * HELM is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with HELM; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+ * MA  02111-1307, USA.
+ * 
+ * For details, see the HELM World-Wide-Web page,
+ * http://helm.cs.unibo.it/
+ *)
+
+let debug = @DEBUG@
+let profiling = debug
+
diff --git a/helm/ocaml/extlib/componentsConf.mli b/helm/ocaml/extlib/componentsConf.mli
new file mode 100644 (file)
index 0000000..79462bb
--- /dev/null
@@ -0,0 +1,28 @@
+(* Copyright (C) 2006, HELM Team.
+ * 
+ * This file is part of HELM, an Hypertextual, Electronic
+ * Library of Mathematics, developed at the Computer Science
+ * Department, University of Bologna, Italy.
+ * 
+ * HELM is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * 
+ * HELM is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with HELM; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+ * MA  02111-1307, USA.
+ * 
+ * For details, see the HELM World-Wide-Web page,
+ * http://helm.cs.unibo.it/
+ *)
+
+val debug: bool
+val profiling: bool
+