diff options
author | andreas <andreas@FreeBSD.org> | 1996-09-22 16:56:34 +0800 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1996-09-22 16:56:34 +0800 |
commit | 8a7be283a98ab596d4f422831c2c78aa8a34f00e (patch) | |
tree | 93d5bf7c0be5a733dc233a899cbd469941618aec /graphics | |
parent | f40f82e070382ac5658ea1826f04162a70a1a21d (diff) | |
download | freebsd-ports-gnome-8a7be283a98ab596d4f422831c2c78aa8a34f00e.tar.gz freebsd-ports-gnome-8a7be283a98ab596d4f422831c2c78aa8a34f00e.tar.zst freebsd-ports-gnome-8a7be283a98ab596d4f422831c2c78aa8a34f00e.zip |
Added pre-clean target.
When doing 'make clean' then clean tiff and jpeg as well.
Reviewed by:
Submitted by:
Obtained from:
Diffstat (limited to 'graphics')
-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> |