1999-11-17 10:59:06 -08:00
|
|
|
#########################################################################
|
|
|
|
# #
|
2011-07-27 07:17:02 -07:00
|
|
|
# OCaml #
|
1999-11-17 10:59:06 -08:00
|
|
|
# #
|
|
|
|
# Xavier Leroy, projet Cristal, INRIA Rocquencourt #
|
|
|
|
# #
|
|
|
|
# Copyright 1999 Institut National de Recherche en Informatique et #
|
|
|
|
# en Automatique. All rights reserved. This file is distributed #
|
|
|
|
# under the terms of the Q Public License version 1.0. #
|
|
|
|
# #
|
|
|
|
#########################################################################
|
|
|
|
|
1999-02-25 06:25:54 -08:00
|
|
|
include ../config/Makefile
|
|
|
|
|
2014-04-07 00:06:17 -07:00
|
|
|
INSTALL_DIR=$(DESTDIR)$(MANDIR)/man$(MANEXT)
|
2002-04-24 02:09:35 -07:00
|
|
|
|
1999-02-25 06:25:54 -08:00
|
|
|
install:
|
2014-04-07 00:06:17 -07:00
|
|
|
for i in *.m; do cp $$i $(INSTALL_DIR)/`basename $$i .m`.$(MANEXT); done
|
|
|
|
echo '.so man$(MANEXT)/ocamlc.$(MANEXT)' > $(INSTALL_DIR)/ocamlc.opt.$(MANEXT)
|
|
|
|
echo '.so man$(MANEXT)/ocamlopt.$(MANEXT)' > $(INSTALL_DIR)/ocamlopt.opt.$(MANEXT)
|
|
|
|
echo '.so man$(MANEXT)/ocamlcp.$(MANEXT)' > $(INSTALL_DIR)/ocamloptp.$(MANEXT)
|