mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-29 00:04:55 +00:00
Estimated hours taken: 0.1 INSTALL_CVS: Add a comment making it clear that this is intended for use by Mercury developers rather than Mercury users.
35 lines
904 B
Bash
Executable File
35 lines
904 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# INSTALL_CVS - installation instructions and installation script.
|
|
# This version is for use by Mercury developers after you have
|
|
# just checked the files out from the CVS archive.
|
|
# Note: you need a previous version of Mercury
|
|
# already installed (the CVS archive doesn't have all the necessary
|
|
# files for bootstrapping).
|
|
# You also need autoconf (and hence GNU m4) installed.
|
|
#
|
|
# Step 0. autoconf
|
|
#
|
|
# Step 1. ./configure
|
|
#
|
|
# Step 2. mmake depend
|
|
#
|
|
# Step 3. mmake
|
|
#
|
|
# Step 4. mmake install
|
|
#
|
|
# If you just want to do a `make' rather than a `make install',
|
|
# then comment out the `mmake install' line below.
|
|
# If you don't want to do a parallel make, comment out the
|
|
# `parallel=-j3' line below.
|
|
|
|
parallel=-j3
|
|
|
|
autoconf &&
|
|
./configure &&
|
|
touch Mmake.params &&
|
|
mmake depend $parallel &&
|
|
mmake MMAKEFLAGS=$parallel &&
|
|
mmake install MMAKEFLAGS=$parallel &&
|
|
true
|