f7fd93660b
Thomas Klausner plus minor changes by me. Allegro is a portable library mainly aimed at video game and multimedia programming, originally started by Shawn Hargreaves for the DJGPP compiler in a mixture of C and assembler. According to the Oxford Companion to Music, Allegro is the Italian for "quick, lively, bright". It is also a recursive acronym which stands for "Allegro Low LEvel Game ROutines". Cross-platform support o Dos (DJGPP, Watcom) o Unix (Linux, *BSD, Irix, Solaris, Darwin) o Windows (MSVC, MinGW, Cygwin, Borland) o BeOS o QNX o MacOS X
24 lines
644 B
Makefile
24 lines
644 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1.1.1 2004/04/05 05:02:42 xtraeme Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
ALLEGRO_BUILDLINK3_MK:= ${ALLEGRO_BUILDLINK3_MK}+
|
|
|
|
.if !empty(BUILDLINK_DEPTH:M+)
|
|
BUILDLINK_DEPENDS+= allegro
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nallegro}
|
|
BUILDLINK_PACKAGES+= allegro
|
|
|
|
.if !empty(ALLEGRO_BUILDLINK3_MK:M+)
|
|
BUILDLINK_DEPENDS.allegro+= allegro>=4.1.13
|
|
BUILDLINK_PKGSRCDIR.allegro?= ../../devel/allegro
|
|
.endif # ALLEGRO_BUILDLINK3_MK
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if !empty(USE_ESOUND:M[Yy][Ee][Ss])
|
|
.include "../../audio/esound/buildlink3.mk"
|
|
.endif
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|