2577a8acef
automagically. -lfoo has to be right to work, but ${LIBFO0} is too easy to forget or misspell; nothing checks it and it should be different for shared libraries.
13 lines
310 B
Makefile
13 lines
310 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PROG = cc1plus
|
|
SRCS = call.c class.c cvt.c decl.c decl2.c edsel.c errfn.c error.c except.c expr.c gc.c init.c lex.c method.c parse.c pt.c ptree.c search.c sig.c spew.c tree.c typeck.c typeck2.c xref.c
|
|
BINDIR= /usr/libexec
|
|
NOMAN= 1
|
|
DPADD+= ${LIBCC_INT}
|
|
LDADD+= -lcc_int
|
|
|
|
.include <bsd.prog.mk>
|