X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=src%2FMakefile.in;h=4d6640e5ccd586573ba7590dd8b78ad7dcd6dc5e;hb=7b7cd85810f18286a36215cc164b659bf7db142c;hp=d3e21fc2350c20d5ca961598e56bda13cda3479f;hpb=4d0527cd7ced1d96720e3af56da29a19551944f7;p=goals.git diff --git a/src/Makefile.in b/src/Makefile.in index d3e21fc..4d6640e 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -17,12 +17,14 @@ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. OBJECTS = \ + config.cmx \ utils.cmx \ + cmdline.cmx \ ast.cmx \ + eval.cmx \ parser.cmx \ lexer.cmx \ parse.cmx \ - eval.cmx \ main.cmx all: goals @@ -49,6 +51,8 @@ goals: $(OBJECTS) parser.ml parser.mli: stamp-parser stamp-parser: parser.mly @MENHIR@ --explain $< +# Hack required to get includes working. + echo 'val lexer_read : (Lexing.lexbuf -> token) option ref' >> parser.mli touch $@ lexer.ml: lexer.mll lexer.cmi parser.ml @@ -65,7 +69,10 @@ depend: .depend -include .depend Makefile: Makefile.in ../config.status - ../config.status Makefile + ../config.status $@ + +config.ml: config.ml.in ../config.status + ../config.status $@ .PHONY: all clean depend