###############################################################################
#
# File:         Makefile
# RCS:          $Header: /u/ejk/var/cvs/courses/cs161/login-solution/Makefile,v 1.2 2005/12/02 13:11:18 ejk Exp $
# Description:  Makefile for ImapC
# Author:       Eric Koskinen
# Created:      Wed Sep 14 15:39:31 2005
# Modified:     Wed Sep 14 15:39:31 2005 (Eric Koskinen) koskinen@imdb.com
# Language:     Makefile
# Package:      N/A
# Status:       Experimental (Do Not Distribute)
#
# (C) Copyright 2005, Eric J Koskinen, all rights reserved.
#
###############################################################################

all: 			ImapC

run:			ImapC
			java ImapC config.1

clean:
			rm *.class

###############################################################################

test:			ImapC
			echo "test: config.1"
			java ImapC config.1
			echo "test: config.2"
			java ImapC config.2
			echo "test: config.3"
			java ImapC config.3
			echo "test: config.4"
			java ImapC config.4
			echo "test: config.5"
			java ImapC config.5
			echo "test: config.6"
			java ImapC config.6
			echo "test: config.7"
			java ImapC config.7

###############################################################################

ImapC:			ImapC.class Account.class

%.class: %.java
			javac -Xlint $<

###############################################################################
