From 524e7cad6802c1c32160d69728889cfe734753a4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kim=20Nguy=E1=BB=85n?= Date: Sun, 18 Aug 2013 18:49:58 +0200 Subject: [PATCH] Add the .mly and .mll files as dependencies of the generated .ml --- Remakefile.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Remakefile.in b/Remakefile.in index f8552fe..627f79c 100644 --- a/Remakefile.in +++ b/Remakefile.in @@ -66,8 +66,10 @@ distclean: clean test_clean %.ml: if test -f $*.mly; then + $(REMAKE) $*.mly $(OCAMLYACC) $*.mly elif test -f $*.mll; then + $(REMAKE) $*.mll $(OCAMLLEX) $*.mll fi -- 2.17.1