diff options
author | bde <bde@FreeBSD.org> | 1995-09-28 17:33:16 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-09-28 17:33:16 +0000 |
commit | f0f0f425bea5c587319f193a04633f8a46dfb936 (patch) | |
tree | 0f14841b8cc029c356025f68ea4d4173eb484537 /libexec/bootpd | |
parent | 24bdcdda8cc78d7cb364caa62216ff5b7150db88 (diff) | |
download | FreeBSD-src-f0f0f425bea5c587319f193a04633f8a46dfb936.zip FreeBSD-src-f0f0f425bea5c587319f193a04633f8a46dfb936.tar.gz |
Fix SRCS (.c's were .o's) so that `make depend' works.
Diffstat (limited to 'libexec/bootpd')
-rw-r--r-- | libexec/bootpd/tools/bootptest/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/bootpd/tools/bootptest/Makefile b/libexec/bootpd/tools/bootptest/Makefile index 5350b7c..d137e73 100644 --- a/libexec/bootpd/tools/bootptest/Makefile +++ b/libexec/bootpd/tools/bootptest/Makefile @@ -1,9 +1,9 @@ # Makefile -# $Id: Makefile,v 1.1.1.1 1994/09/30 05:45:07 pst Exp $ +# $Id: Makefile,v 1.2 1995/05/30 05:45:51 rgrimes Exp $ PROG= bootptest MAN8= bootptest.8 -SRCS= bootptest.o print-bootp.o getif.o getether.o report.o +SRCS= bootptest.c getether.c getif.c print-bootp.c report.c SRCDIR= ${.CURDIR}/../.. CFLAGS+=-I${SRCDIR} |