#
# 5799-WZQ (C) COPYRIGHT = NONE
# LICENSED MATERIALS - PROPERTY OF IBM
#
# $Header:Makefile 12.0$ 
# $ACIS:Makefile 12.0$ 
# $Source: /ibm/acis/usr/src/etc/tftpd/RCS/Makefile,v $ 

#
# Copyright (c) 1983 Regents of the University of California.
# All rights reserved.  The Berkeley software License Agreement
# specifies the terms and conditions for redistribution.
#
#	@(#)Makefile	1.2 (Berkeley) 2/7/86
#

ALL=	tftpd.o tftpsubs.o
DESTDIR=
CFLAGS=	-O
LDFLAGS=
IFLAGS=	-c -s
ETCDIR=	/etc

all:	tftpd

tftpd:	${ALL}
	${CC} ${LDFLAGS} -o tftpd ${ALL}

install: all
	install ${IFLAGS} tftpd ${DESTDIR}${ETCDIR}/tftpd

clean:
	rm -f tftpd *.o *.s errs core a.out t.?
