20 lines
431 B
Makefile
20 lines
431 B
Makefile
# $OpenBSD: Makefile.inc,v 1.4 2019/07/12 21:02:14 sthen Exp $
|
|
|
|
CONFIG?= arm-none-eabi
|
|
PKGNAME?= ${CONFIG}-${DISTNAME}
|
|
FULLPKGNAME?= ${PKGNAME}
|
|
CATEGORIES+= devel
|
|
|
|
# GPLv3
|
|
# For newlib: multiple copyrights, but basically BSD.
|
|
# See: ${PREFIX}/share/doc/newlib
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS+=--target=${CONFIG} \
|
|
--disable-shared \
|
|
--disable-nls \
|
|
--disable-werror
|
|
|
|
EXTRACT_SUFX?= .tar.bz2
|