mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-08 14:46:56 -04:00
19 lines
438 B
Makefile
19 lines
438 B
Makefile
# $NetBSD: Makefile,v 1.3 2015/09/23 04:24:21 mrg Exp $
|
|
|
|
libiberty/libiberty.a:
|
|
[ ! -d libiberty ] && mkdir libiberty || true
|
|
(cd libiberty; \
|
|
CC=${HOST_CC:Q} \
|
|
CFLAGS=${HOST_CFLAGS:Q} \
|
|
MAKE=${MAKE:Q} \
|
|
CONFIG_SHELL=${HOST_SH:Q} \
|
|
${HOST_SH} ${DIST}/libiberty/configure \
|
|
&& CC=${HOST_CC:Q} CFLAGS=${HOST_CFLAGS:Q} ${MAKE})
|
|
|
|
cleandir:
|
|
-rm -rf libiberty
|
|
|
|
depend dependall all: libiberty/libiberty.a
|
|
|
|
.include <bsd.prog.mk>
|