DEFINES = -DHESIOD -DKPOP
INCLUDES = -I/usr/athena/include -I.
LIBS = -L/usr/athena/lib -lhesiod -lkrb -ldes -lsocket -lnsl -lresolv
LD = cc

CFLAGS = -O ${INCLUDES} ${DEFINES}
LDFLAGS = ${LIBS}

all: from

install: from
	install -s from /mit/tytso/vaxbin

from: from.o popmail.o
	$(LD) -o from from.o popmail.o $(LDFLAGS)

getmail: getmail.o popmail.o
	$(LD) -o getmail getmail.o popmail.o $(LDFLAGS)

clean:
	/bin/rm -f from *.o *~






