diff options
author | blazy <blazy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e> | 2009-02-27 10:13:48 +0000 |
---|---|---|
committer | blazy <blazy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e> | 2009-02-27 10:13:48 +0000 |
commit | 2837d6dee77b4cbdeb12c5b58bb72bcc6ad416b5 (patch) | |
tree | fb8c9632b729575a643adc0bdfa0c7b87370ab2a /Makefile | |
parent | a745efa7f07a10cec625b9c302eb0196b7bfaefb (diff) |
make install: ./ccomp au lieu de ../ccomp
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1000 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -14,6 +14,7 @@ include Makefile.config COQC=coqc $(INCLUDES) COQDEP=coqdep $(INCLUDES) +#COQC=/Users/sandrineblazy/SWtrunkcoq/bin/coqc $(INCLUDES) COQDOC=coqdoc OCAMLBUILD=ocamlbuild OCB_OPTIONS=\ @@ -139,7 +140,7 @@ depend: install: install -d $(BINDIR) - install ../ccomp $(BINDIR) + install ./ccomp $(BINDIR) $(MAKE) -C runtime install clean: |