diff options
author | Andreas Klemm <andreas@FreeBSD.org> | 1996-09-22 08:56:34 +0000 |
---|---|---|
committer | Andreas Klemm <andreas@FreeBSD.org> | 1996-09-22 08:56:34 +0000 |
commit | cafa684b25d47456390d8b4a1364e8febc2b9566 (patch) | |
tree | b8b00b21a8080b56e1afd18dbd67fad40b2f9b84 /graphics/xv/Makefile | |
parent | Fix to update score file correctly. (diff) |
Added pre-clean target.
When doing 'make clean' then clean tiff and jpeg as well.
Reviewed by:
Submitted by:
Obtained from:
Diffstat (limited to '')
-rw-r--r-- | graphics/xv/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/graphics/xv/Makefile b/graphics/xv/Makefile index b72a2f53319e..770bdbde2ab3 100644 --- a/graphics/xv/Makefile +++ b/graphics/xv/Makefile @@ -3,7 +3,7 @@ # Date created: 30 October 1994 # Whom: smace # -# $Id: Makefile,v 1.10 1995/12/20 10:49:09 asami Exp $ +# $Id: Makefile,v 1.11 1996/03/06 12:53:01 asami Exp $ # DISTNAME= xv-3.10a @@ -22,4 +22,8 @@ post-install: cp ${WRKSRC}/docs/xvdocs.ps ${PREFIX}/share/doc/xv .endif +pre-clean: + @(cd ${PORTSDIR}/graphics/jpeg ; ${MAKE} clean) + @(cd ${PORTSDIR}/graphics/tiff ; ${MAKE} clean) + .include <bsd.port.mk> |