diff options
author | 1998-07-12 05:06:27 +0000 | |
---|---|---|
committer | 1998-07-12 05:06:27 +0000 | |
commit | 52121be9475c8aee9809202c4a4533c500c6306f (patch) | |
tree | f037109425e686d04cd1ead29e8c5fca6a2f156e | |
parent | Implement demand_drop() for demand mode pppd; try to avoid mbuf (diff) | |
download | wireguard-openbsd-52121be9475c8aee9809202c4a4533c500c6306f.tar.xz wireguard-openbsd-52121be9475c8aee9809202c4a4533c500c6306f.zip |
allow to build correctly with ro /usr/src
-rw-r--r-- | usr.sbin/amd/doc/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/usr.sbin/amd/doc/Makefile b/usr.sbin/amd/doc/Makefile index 8082fcc8bfe..9d26fbe0af6 100644 --- a/usr.sbin/amd/doc/Makefile +++ b/usr.sbin/amd/doc/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.1.1.1 1995/10/18 08:47:16 deraadt Exp $ +# $Id: Makefile,v 1.2 1998/07/12 05:06:27 todd Exp $ # # Copyright (c) 1990 Jan-Simon Pendry # Copyright (c) 1990 Imperial College of Science, Technology & Medicine @@ -38,17 +38,19 @@ # SUCH DAMAGE. # # from: @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id: Makefile,v 1.1.1.1 1995/10/18 08:47:16 deraadt Exp $ +# $Id: Makefile,v 1.2 1998/07/12 05:06:27 todd Exp $ PROG = amdref -SRCS = amdref.texinfo +SRCS = ${.CURDIR}/amdref.texinfo ${PROG}: amdref.dvi amdref.dvi: ${SRCS} - -tex amdref.texinfo; tex amdref.texinfo + -tex ${.CURDIR}/amdref.texinfo; tex ${.CURDIR}/amdref.texinfo clean: -rm -f amdref.aux amdref.cp amdref.cps amdref.dvi amdref.fn \ amdref.fns amdref.ky amdref.kys amdref.log amdref.pg amdref.pgs \ amdref.toc amdref.tp amdref.tps amdref.vr amdref.vrs + +.include <bsd.prog.mk> |