greed-0.99.7/
greed-0.99.7/area/
greed-0.99.7/backup/
greed-0.99.7/clans/
greed-0.99.7/classes/
greed-0.99.7/dict/
greed-0.99.7/doc/mprogs/
greed-0.99.7/log/
greed-0.99.7/notes/
greed-0.99.7/player/
MAKEDIR	= ./Makefiles

make:
	@echo Make what?  You must clarify which system to compile GREED.
	@echo
	@echo 'make aix	- AIX'
	@echo 'make amiga	- Amiga with TCP/IP'
	@echo 'make bsd 	- FreeBSD'
	@echo 'make hpux	- HPUX'
	@echo 'make irix	- Irix'
	@echo 'make mip	- MIP'
	@echo 'make next	- NeXT'
	@echo 'make dec-osf	- DEC OSF'
	@echo 'make solaris	- Anything running Solaris'
	@echo 'make standard	- Default compile'
	@echo 'make linux2	- For Linux with glibc-2'
	@echo 'make linux1	- For Linux with glibc-1'
	@echo 'make sequent	- Sequent machines'
	@echo 'make tektronix	- Tektronix machines'
	@echo
	@echo If your system does not appear in the above list, try 'make all'.
	@echo
	@echo For Windows 95/NT platforms please read README.WIN

all:	standard

clean:
	rm -f *.o envy envy2

aix:
	make -f $(MAKEDIR)/Makefile.aix

amiga:
	make -f $(MAKEDIR)/Makefile.ami

hpux:
	make -f $(MAKEDIR)/Makefile.hp

irix:
	make -f $(MAKEDIR)/Makefile.irx

mip:
	make -f $(MAKEDIR)/Makefile.mip

next:
	make -f $(MAKEDIR)/Makefile.nex

dec-osf:
	make -f $(MAKEDIR)/Makefile.osf

solaris:
	make -f $(MAKEDIR)/Makefile.sol

standard:
	make -f $(MAKEDIR)/Makefile.std

std:
	make -f $(MAKEDIR)/Makefile.std

linux2:
	make -f $(MAKEDIR)/Makefile.lnx

linux1:
	make -f $(MAKEDIR)/Makefile.std

sequent:
	make -f $(MAKEDIR)/Makefile.sys

tektronix:
	make -f $(MAKEDIR)/Makefile.tek

bsd:
	make -f $(MAKEDIR)/Makefile.bsd