line too long

git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@5268 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Damien Doligez 2002-11-15 16:36:52 +00:00
parent d1cbfbd04f
commit 14b7683557
1 changed files with 6 additions and 3 deletions

View File

@ -273,9 +273,12 @@ installopt:
cd stdlib; $(MAKE) installopt cd stdlib; $(MAKE) installopt
cd ocamldoc; $(MAKE) installopt cd ocamldoc; $(MAKE) installopt
for i in $(OTHERLIBRARIES); do (cd otherlibs/$$i; $(MAKE) installopt) || exit $$?; done for i in $(OTHERLIBRARIES); do (cd otherlibs/$$i; $(MAKE) installopt) || exit $$?; done
if test -f ocamlc.opt; then cp ocamlc.opt $(BINDIR)/ocamlc.opt$(EXE); else :; fi if test -f ocamlc.opt; \
if test -f ocamlopt.opt; then cp ocamlopt.opt $(BINDIR)/ocamlopt.opt$(EXE); else :; fi then cp ocamlc.opt $(BINDIR)/ocamlc.opt$(EXE); else :; fi
if test -f lex/ocamllex.opt; then cp lex/ocamllex.opt $(BINDIR)/ocamllex.opt$(EXE); else :; fi if test -f ocamlopt.opt; \
then cp ocamlopt.opt $(BINDIR)/ocamlopt.opt$(EXE); else :; fi
if test -f lex/ocamllex.opt; \
then cp lex/ocamllex.opt $(BINDIR)/ocamllex.opt$(EXE); else :; fi
clean:: partialclean clean:: partialclean