#
#  makefile to create frontd.
#  nothing really fancy.
#		by Willem Jan Withagen
#
CFLAGS = -O
ARCHFILES	= README README.APOLLO frontd.c makefile
ARCH		= frontd.10.2.tar
FTP		= /usr/user/ftp/pub/apollo
frontd:
	cc ${CFLAGS} -o frontd frontd.c

archive:
	tar cvf ${ARCH} ${ARCHFILES}
	compress ${ARCH}
	cp ${ARCH}.Z ${FTP}
	chmod 644 ${FTP}/${ARCH}.Z
