#
# W-NEWS	A simple NEWS processing package.
#
# Version:	@(#)Makefile.ALL	4.51	03-Feb-1995
#
# Authors:	Fred N. van Kempen, <waltje@infomagic.com>
#
#		Copyright 1988,1989,1990,1991,1992,1993 MicroWalt Corporation
#		Copyright 1994,1995 Cistron Software C.V.
#
#		This program is free software; you can redistribute it and/or
#		modify it under the terms of the GNU General Public License
#		as published by the Free Software Foundation; either version
#		2 of the License, or (at your option) any later version.


VERSION		= 4.51
COMPRESS	= gzip -9
COMPEXT		= gz


all:
		@echo "Type make <system>, and choose <system> from:"
		@echo
		@echo "linux		Standard Linux"
		@echo "owld		OpenWorld Linux Distribution"
		@echo "linuxpro	Linux/PRO"
		@echo "minix		Tanenbaum's Minix 1.5.10"
		@echo "coh286		MWC's Coherent 3.X for 80286"
		@echo "coh386		MWC's Coherent 4.X for 80386 and 80486"
		@echo

dist:
		@tar cfv - * | $(COMPRESS) >../wnews-$(VERSION).tar.$(COMPEXT)

linux:		config/Makefile.lnx
		@cp config/Makefile.lnx Makefile
		@echo "W-NEWS set up for Standard Linux."

owld:		config/Makefile.owld
		@cp config/Makefile.owld Makefile
		@echo "W-NEWS set up for OpenWorld Linux Distribution"

linuxpro:	config/Makefile.pro
		@cp config/Makefile.pro Makefile
		@echo "W-NEWS set up for Linux/PRO."

minix:		config/Makefile.mnx
		@cp config/Makefile.mnx Makefile
		@echo "W-NEWS set up for Minix 1.5.10."

coh286:		config/Makefile.coh3
		@cp config/Makefile.coh2 Makefile
		@echo "W-NEWS set up for Coherent 3.X (80286)."

coh386:		config/Makefile.coh4
		@cp config/Makefile.coh3 Makefile
		@echo "W-NEWS set up for Coherent 4.X (80386)."

# End of Makefile.ALL.
