634ebd4dc4
This should not be used directly for building host tools; rather, the top level bootstrap (to be committed separately) should be used to build the entire system including this compiler.
18 lines
487 B
Makefile
18 lines
487 B
Makefile
# $NetBSD: Makefile.backend,v 1.1 2001/06/18 16:18:30 tv Exp $
|
|
|
|
MKMAN= no
|
|
BINDIR= /usr/libexec
|
|
|
|
CPPFLAGS+= -I${GCCARCH} -I${BACKENDOBJ} \
|
|
${G_ALL_CFLAGS:M-D*} ${G_INCLUDES:M-I*:N-I.*}
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIBIBERTYOBJ!= cd ${.CURDIR}/../../../lib/libiberty && ${PRINTOBJDIR}
|
|
BACKENDOBJ!= cd ${.CURDIR}/../backend && ${PRINTOBJDIR}
|
|
|
|
DPADD= ${BACKENDOBJ}/libbackend.a ${LIBIBERTYOBJ}/libiberty.a
|
|
LDADD= -L${BACKENDOBJ} -lbackend -L${LIBIBERTYOBJ} -liberty
|
|
|
|
.include <bsd.prog.mk>
|