diff --git a/external/bsd/pcc/libexec/cpp/Makefile b/external/bsd/pcc/libexec/cpp/Makefile index a5a543913cb5..4c79ec3ab1c9 100644 --- a/external/bsd/pcc/libexec/cpp/Makefile +++ b/external/bsd/pcc/libexec/cpp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2010/01/20 11:45:55 plunky Exp $ +# $NetBSD: Makefile,v 1.5 2010/02/03 22:03:56 plunky Exp $ .include @@ -10,7 +10,11 @@ PROG= cpp SRCS= cpy.y SRCS+= cpp.c token.c -MAN= cpp.1 +# avoid conflicts with the GCC cpp.1 page +MAN= pcpp.1 + +pcpp.1: cpp.1 + cp ${.ALLSRC} ${.TARGET} CPPFLAGS+= -DCPP_DEBUG CPPFLAGS+= -I${.OBJDIR} @@ -26,6 +30,6 @@ DPSRCS= y.tab.h y.tab.h: cpy.h ${HOST_LN} -f ${.ALLSRC} ${.TARGET} -CLEANFILES+= y.tab.h +CLEANFILES+= pcpp.1 y.tab.h .include