1#	$OpenBSD: Makefile,v 1.12 2013/12/09 02:35:09 guenther Exp $
2
3.include <bsd.own.mk>
4
5NOMAN=
6
7PROG=cpp
8SRCS=
9INSTALL_STRIP=
10
11cpp: cpp.sh
12.if ${COMPILER_VERSION:L} == "gcc3"
13	sed -e 's/@GNUC@/-D__GNUC__/' ${.CURDIR}/cpp.sh >$@
14.else
15	sed -e 's/@GNUC@//' ${.CURDIR}/cpp.sh >$@
16.endif
17
18.include <bsd.prog.mk>
19