xref: /original-bsd/libexec/tftpd/Makefile (revision e2944021)
1#
2# Copyright (c) 1983 Regents of the University of California.
3# All rights reserved.  The Berkeley software License Agreement
4# specifies the terms and conditions for redistribution.
5#
6#	@(#)Makefile	5.2 (Berkeley) 02/07/86
7#
8
9ALL=	tftpd.o tftpsubs.o
10DESTDIR=
11CFLAGS=	-O
12LDFLAGS=
13
14tftpd:	${ALL}
15	${CC} ${LDFLAGS} -o tftpd ${ALL}
16
17install:
18	install -s tftpd ${DESTDIR}/etc/tftpd
19
20clean:
21	rm -f tftpd *.o *.s errs core a.out t.?
22