diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 1998-07-12 05:06:28 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 1998-07-12 05:06:28 +0000 |
commit | 4029162019e26bbcf2ae98d8a9cf9db4101d3a10 (patch) | |
tree | f4bfb86884bbe4ea334fa48f0f2848b93697d0ff | |
parent | fbaa2f1fb45d7e38444bc8ff2bb5245cf4b3562a (diff) |
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 806ef09d72d..9d26fbe0af6 100644 --- a/usr.sbin/amd/doc/Makefile +++ b/usr.sbin/amd/doc/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 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 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> |