ref: 8306e1f36b4b61619677f553319b7a82de2679a3
parent: 4932b5f0cf6f495208a0c1e1f4b2810ecf84fb9a
author: Ori Bernstein <ori@eigenstate.org>
date: Mon Jun 15 17:26:40 EDT 2015
Remove obsolete manpage.
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -1,6 +1,5 @@
INSTMAN=mc.1 \
muse.1 \
- myrbuild.1 \
include ../config.mk
include ../mk/c.mk
--- a/doc/myrbuild.1
+++ /dev/null
@@ -1,78 +1,0 @@
-.TH MUSE 1
-.SH NAME
-myrbuild
-.SH SYNOPSIS
-.B myrbuild
-.I -[hblI]
-.I [file...]
-.br
-.SH DESCRIPTION
-.PP
-The 'myrbuild' tool takes as input a list of Myrddin or assembly sources,
-and compiles them in the correct dependency order into either a library or
-an executable. If the source files are myrddin sources, then the appropriate
-usefiles will be created as well. It expects Myrddin source to be in '.myr'
-files.
-
-.PP
-Myrbuild will default to building for the current architecture.
-
-.PP
-The myrbuild options are:
-
-.TP
-.B -h
-Print a summary of the available options.
-
-.TP
-.B -b name
-Compile source into a binary named 'name'. If neither this option nor
-the '-l' option are given, myrbuild will create a binary called 'a.out'.
-
-.TP
-.B -l 'name'
-Compile source given into a library called 'lib<name>.a', and a matching
-usefile called 'name'. Only static libraries are currently supported.
-
-.TP
-.B -s 'script'
-Pass the linker script 'script' to the linker. If this option is not
-provided, no script is passed to the linker.
-
-.TP
-.B -r 'rt'
-Compile a binary using the runtime 'rt'. If the runtime name given
-is 'none', then no runtime will be linked. If this option is not provided,
-then the default runtime in '$INSTALL_ROOT/myr/lib/_myrrt.o' will be
-used.
-
-.TP
-.B -I path
-Add 'path' to the search path for unquoted use statments. This option
-does not affect the search path for local usefiles, which are always
-searched relative to the compiler's current working directory. Without
-any options, the search path defaults to /usr/include/myr.
-
-.SH EXAMPLE
-.EX
- myrbuild -b foo foo.myr
- myrbuild -l foo bar.myr baz.myr
- muse -mo library foo.use bar.use
-.EE
-
-.SH FILES
-The source for muse is available from
-.B git://git.eigenstate.org/git/ori/mc.git
-and lives in the
-.I myrbuild/
-directory within the source tree.
-
-.SH SEE ALSO
-.IR mc(1)
-.IR muse(1)
-.IR ld(1)
-.IR as(1)
-
-.SH BUGS
-.PP
-None known.