mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
It is here in case we decide we want the directory to match the binary name since neither the binary nor the source file(s) are named 'cccp' any longer.
16 lines
286 B
Makefile
16 lines
286 B
Makefile
# $FreeBSD$
|
|
|
|
.include "../Makefile.inc"
|
|
|
|
.PATH: ${GCCDIR}
|
|
|
|
PROG= cpp0
|
|
SRCS= cppdefault.c cpperror.c cppexp.c cppfiles.c cpphash.c cppinit.c cpplex.c cpplib.c \
|
|
cppmain.c cppulp.c mkdeps.c
|
|
BINDIR= /usr/libexec
|
|
NOMAN= 1
|
|
|
|
DPADD+= ${LIBCC_INT}
|
|
LDADD+= ${LIBCC_INT}
|
|
|
|
.include <bsd.prog.mk>
|