# Makefile for mnet program.
# By elixir@wybbs.mi.org or elixir@therip.grand-rapids.mi.us
# Made for the  R.I.P.
#
# bank      = A way to store "credits" for use for many things...
#	      Let me know if you figure out something to use them for...
# banner    = A banner maker for online messages
# keirsey   = Find out things about your personality
# makematch = Match to a somewhat compatible person..

install: all
	chmod a+rx bank banner keirsey makematch 
	cp bank banner keirsey makematch  /usr/local/bin
	chown bin.games /usr/local/bin/makematch
	chmod g+s /usr/local/bin/makematch

all:	bank banner keirsey makematch 

bank:	bank.c
	cc -o bank -O bank.c

banner:	banner.c
	cc -o banner -O banner.c

keirsey: keirsey.c
	cc -o keirsey -O keirsey.c

makematch: makematch.c
	cc -o makematch -O makematch.c

clean:
	rm -f *.o *~ 
Clean:
	rm -f *.o *~ bank banner keirsey makematch 

