# $OpenBSD: Makefile,v 1.9 2010/05/03 18:34:01 drahn Exp $ .include NOMAN= PROG=cpp SRCS= INSTALL_STRIP= USE_GCC3?="no" USE_GCC4?="no" cpp: cpp.sh .if ${USE_GCC3:L} == "yes" sed -e 's/@GNUC@/-D__GNUC__/' -e 's/@dollaropt@//' ${.CURDIR}/cpp.sh >$@ .elif ${USE_GCC4:L} == "yes" sed -e 's/@GNUC@//' -e 's/@dollaropt@//' ${.CURDIR}/cpp.sh >$@ .else sed -e 's/@GNUC@/-D__GNUC__/' -e 's/@dollaropt@/-$$/' ${.CURDIR}/cpp.sh >$@ .endif .include