pkgsrc/lang/gambc/hacks.mk
rillig 8c6aee8563 lang: align variable assignments
pkglint -Wall -F --only aligned --only indent -r

No manual corrections.
2019-11-03 19:03:56 +00:00

15 lines
507 B
Makefile

# $NetBSD: hacks.mk,v 1.3 2019/11/03 19:03:57 rillig Exp $
###
.if !defined(GAMBC_HACKS_MK)
GAMBC_HACKS_MK= # empty
.include "../../mk/compiler.mk"
###
### It looks as if the developers don't think O2 is a win. Considering how
### much memory and time this package takes to build the more optimization
### is enabled, let's let the configure script do its job.
###
.if !empty(CC_VERSION:Mgcc-*)
BUILDLINK_TRANSFORM+= rm:-O[2-9s]*
.endif
BUILDLINK_TRANSFORM+= rm:-pipe # XXX takes up too much memory
.endif