# vlad the scanner makefile
#
CC=gcc
OPTS=-Wall -Werror
PROGS=rpc sendmail imap

default: all

rpc:
	$(CC) $(OPTS) -o rpc rpc.c

sendmail:
	$(CC) $(OPTS) -o sendmail sendmail.c

imap:
	$(CC) $(OPTS) -o imap imap.c

all: $(PROGS)

clean:
	rm $(PROGS)
#
# $Id: Makefile,v 1.1 2000/11/06 15:23:55 loveless Exp $
