diff options
author | bde <bde@FreeBSD.org> | 1998-02-25 01:30:05 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-02-25 01:30:05 +0000 |
commit | 71480980bc7031823c3f6ff5d04d4b323128fb05 (patch) | |
tree | ca65e16ec870e0cf8e4c5842de0cb621cf9f9113 | |
parent | c6e6ad163c9e12a8f59dbea28a46712f851a4ac2 (diff) | |
download | FreeBSD-src-71480980bc7031823c3f6ff5d04d4b323128fb05.zip FreeBSD-src-71480980bc7031823c3f6ff5d04d4b323128fb05.tar.gz |
Don't add non-generated sources to CLEANFILES. There was no problem
in practice, even if there is no obj directory, because the sources
are not in ${.CURDIR} and the full path to them was not added.
-rw-r--r-- | lib/librpcsvc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/librpcsvc/Makefile b/lib/librpcsvc/Makefile index 44c2384..1936d04 100644 --- a/lib/librpcsvc/Makefile +++ b/lib/librpcsvc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.10 (Berkeley) 6/24/90 -# $Id: Makefile,v 1.6 1996/08/30 02:02:09 peter Exp $ +# $Id: Makefile,v 1.10 1997/05/28 04:53:07 wpaul Exp $ .PATH: ${DESTDIR}/usr/include/rpcsvc @@ -21,7 +21,7 @@ CFLAGS+= -DYP ${INCDIRS} GENSRCS= ${RPCSRCS:R:S/$/_xdr.c/g} SRCS+= ${GENSRCS} ${OTHERSRCS} ${SECRPCSRCS} -CLEANFILES+= ${GENSRCS} ${RPCSRCS} +CLEANFILES+= ${GENSRCS} NOMAN= noman |