aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorfilliatr2001-01-30 09:19:30 +0000
committerfilliatr2001-01-30 09:19:30 +0000
commit0577c06262f89785b41f110840a1646c7981fe12 (patch)
tree46b8bb51c71429b0a2c3710d842af4186bc410ce /Makefile
parent3378c2cc6a403e78f3fd800dcaca67a82bfb9b4d (diff)
backtrack sur le lexeur de la V6
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1289 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 2 insertions, 14 deletions
diff --git a/Makefile b/Makefile
index dac1b926d0..5cf95b7a84 100644
--- a/Makefile
+++ b/Makefile
@@ -512,22 +512,10 @@ tags:
### Special rules
###########################################################################
-# lexer (compiled with camlp4 to get optimized streams)
-
-parsing/lexer.cmo: parsing/lexer.ml
- $(OCAMLC_P4O) -c $<
-
-parsing/lexer.cmx: parsing/lexer.ml
- $(OCAMLOPT_P4O) -c $<
-
-clean::
- rm -f parsing/lexer.ml
-
-beforedepend:: parsing/lexer.ml
-
# grammar modules with camlp4
-ML4FILES += parsing/q_coqast.ml4 parsing/g_prim.ml4 parsing/pcoq.ml4
+ML4FILES += parsing/lexer.ml4 parsing/q_coqast.ml4 \
+ parsing/g_prim.ml4 parsing/pcoq.ml4
GRAMMARCMO=lib/pp_control.cmo lib/pp.cmo lib/util.cmo lib/dyn.cmo \
lib/hashcons.cmo parsing/coqast.cmo parsing/lexer.cmo \