ajout -warn-error

git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4279 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Damien Doligez 2002-01-20 14:44:44 +00:00
parent 3b10404aa6
commit 224f7100b7
1 changed files with 5 additions and 3 deletions

View File

@ -18,7 +18,7 @@ include config/Makefile
CAMLC=boot/ocamlrun boot/ocamlc -I boot
CAMLOPT=boot/ocamlrun ./ocamlopt -I stdlib
COMPFLAGS=$(INCLUDES)
COMPFLAGS=-warn-error A $(INCLUDES)
LINKFLAGS=
CAMLYACC=boot/ocamlyacc
YACCFLAGS=-v
@ -226,7 +226,8 @@ install: FORCE
if test -d $(MANDIR); then : ; else $(MKDIR) $(MANDIR); fi
rm -f $(LIBDIR)/lib*.so
cd byterun; $(MAKE) install
if test -r $(LIBDIR)/ld.conf; then :; else echo "$(LIBDIR)" > $(LIBDIR)/ld.conf; fi
if test -r $(LIBDIR)/ld.conf; then :; \
else echo "$(LIBDIR)" > $(LIBDIR)/ld.conf; fi
cp ocamlc $(BINDIR)/ocamlc$(EXE)
cp ocaml $(BINDIR)/ocaml$(EXE)
cd stdlib; $(MAKE) install
@ -244,7 +245,8 @@ install: FORCE
done
if test -f ocamlopt; then $(MAKE) installopt; else :; fi
cd camlp4; $(MAKE) install LIBDIR=$(LIBDIR)
if test -f debugger/ocamldebug; then (cd debugger; $(MAKE) install); else :; fi
if test -f debugger/ocamldebug; then (cd debugger; $(MAKE) install); \
else :; fi
# Installation of the native-code compiler
installopt: