blob: 4b0ff938acb7be3f7a6a29cdc67691b6a99813ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $NetBSD: override-as.mk,v 1.7 2013/08/15 06:48:50 richard Exp $
# This Makefile fragment can be included by packages that wish to
# override the default selection of as(1) and use the one from devel/binutils
# instead.
PKG_AS= ${PREFIX}/bin/gas
.include "../../mk/compiler.mk"
.if !empty(PKGSRC_COMPILER:Mgcc)
SPECS_AS= ${WRAPPER_DIR}/specs.as
WRAPPER_TARGETS+= ${SPECS_AS}
${SPECS_AS}:
@${ECHO} "*invoke_as:" > ${SPECS_AS}
@${ECHO} "%{!S:-o %|.s |" >> ${SPECS_AS}
@${ECHO} "${PKG_AS} %(asm_options) %m.s %A }" >> ${SPECS_AS}
_WRAP_EXTRA_ARGS.CC+= -specs=${SPECS_AS}
_WRAP_EXTRA_ARGS.CXX+= -specs=${SPECS_AS}
.endif
|