freebsd-dev/gnu/usr.bin/cc/c++/Makefile
Bruce Evans 2577a8acef Add dependencies on libraries to DPADD. Someday this should be done
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.
1994-08-28 18:49:06 +00:00

13 lines
129 B
Makefile

#
# $FreeBSD$
#
PROG = c++
SRCS = g++.c
BINDIR= /usr/bin
NOMAN= 1
DPADD+= ${LIBCC_INT}
LDADD+= -lcc_int
.include <bsd.prog.mk>