freebsd-dev/gnu/usr.bin/cc/cpp/Makefile

23 lines
345 B
Makefile
Raw Normal View History

2002-04-06 23:18:01 +00:00
# $FreeBSD$
.include "../Makefile.inc"
.include "../Makefile.fe"
.PATH: ${GCCDIR}
PROG= cpp
SRCS= gcc.c cppspec.c
CFLAGS+= -DDEFAULT_TARGET_VERSION=\"$(version)\"
CFLAGS+= -DDEFAULT_TARGET_MACHINE=\"$(target)\"
2002-06-04 19:45:09 +00:00
DPADD+= ${LIBCC_INT}
LDADD+= ${LIBCC_INT}
2002-04-06 23:18:01 +00:00
CLEANFILES= cpp.1
cpp.1: cccp.1
cat ${.ALLSRC} > ${.TARGET}
2002-04-06 23:18:01 +00:00
.include <bsd.prog.mk>