# man/Makefile
#
# This file is subject to the terms and conditions of the GNU General Public
# License. See the file COPYING in the main directory of this archive for more
# details.

CC		= mips-linux-gcc
AS		= mips-linux-as -mips3
AR		= mips-linux-ar
LD		= mips-linux-ld
STRIP		= mips-linux-strip
MAKE		= make

MANPAGES	= arc.5 milo.8

all:		ascii postscript

ascii:
		set -e;for i in $(MANPAGES); do \
			groff -Tascii -man $$i >$$i.ascii;done

postscript:
		set -e;for i in $(MANPAGES); do \
			groff -Tps -man $$i >$$i.ps;done

depend:

clean:

distclean:	clean
		-rm -f core a.out *.ascii *.ps
