# Makefile 1.9 10/8/92
#
# Makefile for pop3d by W. Gregg Stefancik (wstef@eng.clemson.edu)

# Current Release
RELEASE = 6

# Uncomment for standalone server

#STANDALONE = -DSTANDALONE


CFLAGS = -O ${STANDALONE}

INCLUDES = pop3d.h
SRC  = pop3d.c mailbox.c version.c
OBJS = pop3d.o mailbox.o version.o

pop3d: ${OBJS}
	cc -o pop3d ${OBJS}

clean:
	rm -f ${OBJS} pop3d

tar:
	tar cvf pop3d-r${RELEASE}.tar README Makefile rfc1081.txt ${INCLUDES}\
		 ${SRC}
	compress pop3d-r${RELEASE}.tar

depend:
	mkdep -f Makefile ${CFLAGS} ${SRC}

# DO NOT DELETE THIS LINE -- mkdep uses it.
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.

pop3d.o: pop3d.c ${INCLUDES}
mailbox.o: mailbox.c ${INCLUDES}
version.o: version.c

# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
