all:
	# TinyIRC makefile
	# Copyright (C) 1994 Nathan I. Laredo
	# 
	# This program is free software; you can redistribute it and/or modify
	# it under the terms of the GNU General Public License Version 1
	# as published by the Free Software Foundation.
	# 
	# This program is distributed in the hope that it will be useful,
	# but WITHOUT ANY WARRANTY; without even the implied warranty of
	# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	# GNU General Public License for more details.
	# 
	# You should have received a copy of the GNU General Public License
	# along with this program; if not, write to the Free Software
	# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
	# 
	# Send your comments and all your spare pocket change to 
	# laredo@gnu.ai.mit.edu (Nathan Laredo) or to 1604 Lilac Lane,
	# Plano, TX 75074, USA.  Any donations are welcome.
	# --------------------------------------------------------------
	@echo Did you remember to change the default server in tinyirc.c?
	@echo [1mPlease use make system where system is one of the following:
	@echo "generic   gnu      posix     hpux      aix[m"
generic:
	$(CC) -O -o tinyirc tinyirc.c -ltermcap
gnu:
	gcc -O2 -Wall -o tinyirc tinyirc.c -ltermcap
aix: 
	bsdcc -O -D_AIX_ -o tinyirc tinyirc.c -lcurses
posix:
	$(CC) -O -DUSETERMIOS -o tinyirc tinyirc.c -ltermcap
hpux:
	$(CC) -O -o tinyirc tinyirc.c -lcurses
debug:
	$(CC) -g -DUSETERMIOS -o tinyirc tinyirc.c -ltermcap
