xref: /dragonfly/lib/libm/Makefile (revision 8e1c6f81)
1# $DragonFly: src/lib/libm/Makefile,v 1.7 2007/06/17 17:46:01 pavalos Exp $
2
3LIB=		m
4SHLIB_MAJOR=	3
5WARNS?=		6
6
7# Don't MD fragment must be included before MI fragment.
8ARCHDIR?= ${MACHINE_ARCH}
9.if ${MACHINE_ARCH} == "amd64"
10ARCHDIR= i386
11.endif
12
13.if exists(arch/${ARCHDIR}/Makefile.inc)
14.include "arch/${ARCHDIR}/Makefile.inc"
15.endif
16.include "gen/Makefile.inc"
17.include "man/Makefile.inc"
18.include "src/Makefile.inc"
19
20.include <bsd.lib.mk>
21