1# $FreeBSD$
2
3.include "../Makefile.inc"
4
5.PATH: ${.CURDIR}/../cc_tools ${GCCDIR}
6
7PROG=	protoize
8NO_MAN=
9
10# things are rather hard-coded, we work around that here
11CFLAGS+= -DDEFAULT_TARGET_VERSION=\"\"
12CFLAGS+= -DDEFAULT_TARGET_MACHINE=\"../libdata/gcc\"
13
14DPADD=	${LIBCC_INT}
15LDADD=	${LIBCC_INT}
16
17CLEANFILES=	config.h
18config.h: auto-host.h freebsd-native.h
19	cat ${.ALLSRC} >${.TARGET}
20
21.include <bsd.prog.mk>
22