Makefile (e35f9517d68206de4367fdb8d044e6dfebaf372d) | Makefile (752fa694029c20397f7928fa5f6b80f787677be2) |
---|---|
1# @(#)Makefile 8.1 (Berkeley) 6/6/93 2# $FreeBSD$ 3 | 1# @(#)Makefile 8.1 (Berkeley) 6/6/93 2# $FreeBSD$ 3 |
4CFLAGS=-g -Wall 5WARNS= 3 |
|
4PROG= tftp | 6PROG= tftp |
5SRCS= main.c tftp.c tftpsubs.c | 7SRCS= main.c tftp.c tftp-utils.c tftp-io.c tftp-file.c tftp-transfer.c tftp-options.c |
6DPADD= ${LIBEDIT} ${LIBTERMCAP} 7LDADD= -ledit -ltermcap | 8DPADD= ${LIBEDIT} ${LIBTERMCAP} 9LDADD= -ledit -ltermcap |
10CFLAGS+=-I${.CURDIR}/../../libexec/tftpd -I${.CURDIR}/../../usr.bin/tftp 11.PATH: ${.CURDIR}/../../libexec/tftpd |
|
8 9.include <bsd.prog.mk> | 12 13.include <bsd.prog.mk> |