Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/xsrc/Makefile,v rcsdiff: /ftp/cvs/cvsroot/xsrc/Makefile,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- xsrc/Makefile 2005/01/07 18:51:33 1.43 +++ xsrc/Makefile 2005/03/18 15:56:09 1.44 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.43 2005/01/07 18:51:33 tron Exp $ +# $NetBSD: Makefile,v 1.44 2005/03/18 15:56:09 tron Exp $ # # Targets & Variables # @@ -44,14 +44,6 @@ all-xc: @cd ${XCDIR} && ${MAKE} World .endif -all-contrib: - @if [ ! -f contrib/Makefile ]; then \ - cd contrib && PATH=../${XCDIR}/config/imake:$$PATH \ - sh ../${XCDIR}/config/util/xmkmf -a ../${XCDIR} \ - ${.CURDIR}/contrib; \ - fi - @cd contrib && ${MAKE} - all-local: @if [ ! -f local/Makefile ]; then \ cd local && PATH=../${XCDIR}/config/imake:$$PATH \ @@ -67,11 +59,6 @@ install-xc: ${MAKE} DESTDIR="${DESTDIR}" install && \ ${MAKE} DESTDIR="${DESTDIR}" install.man -install-contrib: - @cd contrib && \ - ${MAKE} DESTDIR="${DESTDIR}" install && \ - ${MAKE} DESTDIR="${DESTDIR}" install.man - install-local: @cd local && \ ${MAKE} DESTDIR="${DESTDIR}" install && \ @@ -82,8 +69,8 @@ clean: @-cd local && ${MAKE} clean cleandir distclean: clean - find ${XCDIR} contrib local -name .depend | xargs -n5 rm - find ${XCDIR} contrib local -name 'Makefile*' | \ + find ${XCDIR} local -name .depend | xargs -n5 rm + find ${XCDIR} local -name 'Makefile*' | \ xargs -n5 grep -l "Makefile generated by imake" | xargs rm -rmdir ${XCDIR}/exports rm -f ${XCDIR}/xmakefile ${XCDIR}/config/cf/version.def \