diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1997-11-16 02:14:26 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1997-11-16 02:14:26 +0000 |
commit | 88c00229be43d7c24c96e6a35616deeebf545c0a (patch) | |
tree | 81360f5291e162b5c89e6e32a9de21f8bbe9c200 | |
parent | make it package (diff) |
Don't install docs if NOPORTDOCS is set.
Notes
Notes:
svn path=/head/; revision=8651
-rw-r--r-- | emulators/sim/Makefile | 4 | ||||
-rw-r--r-- | emulators/simh/Makefile | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/emulators/sim/Makefile b/emulators/sim/Makefile index e7c8e79be347..d999e0ec0a43 100644 --- a/emulators/sim/Makefile +++ b/emulators/sim/Makefile @@ -3,7 +3,7 @@ # Date created: 7 November 1997 # Whom: jraynard # -# $Id: Makefile,v 1.1.1.1 1997/11/08 20:33:00 jraynard Exp $ +# $Id: Makefile,v 1.2 1997/11/10 09:17:57 asami Exp $ # DISTNAME= sim_2.3 @@ -31,7 +31,9 @@ do-install: ${INSTALL_PROGRAM} ${WRKDIR}/pdp9 ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKDIR}/pdp11 ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKDIR}/pdp15 ${PREFIX}/bin +.if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/sim && ${INSTALL_DATA} ${WRKDIR}/simh_doc.txt \ ${PREFIX}/share/doc/sim +.endif .include <bsd.port.mk> diff --git a/emulators/simh/Makefile b/emulators/simh/Makefile index e7c8e79be347..d999e0ec0a43 100644 --- a/emulators/simh/Makefile +++ b/emulators/simh/Makefile @@ -3,7 +3,7 @@ # Date created: 7 November 1997 # Whom: jraynard # -# $Id: Makefile,v 1.1.1.1 1997/11/08 20:33:00 jraynard Exp $ +# $Id: Makefile,v 1.2 1997/11/10 09:17:57 asami Exp $ # DISTNAME= sim_2.3 @@ -31,7 +31,9 @@ do-install: ${INSTALL_PROGRAM} ${WRKDIR}/pdp9 ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKDIR}/pdp11 ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKDIR}/pdp15 ${PREFIX}/bin +.if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/sim && ${INSTALL_DATA} ${WRKDIR}/simh_doc.txt \ ${PREFIX}/share/doc/sim +.endif .include <bsd.port.mk> |