* Use id(1) instead of grep(1) to detect the presence of the smmsp
[dragonfly.git] / lib / libcr / alpha / gen / Makefile.inc
1 # $FreeBSD: src/lib/libc/alpha/gen/Makefile.inc,v 1.6.2.1 2001/02/07 00:12:41 peter Exp $
2 # $DragonFly: src/lib/libcr/alpha/gen/Attic/Makefile.inc,v 1.3 2003/07/24 21:41:45 dillon Exp $
3
4 SRCS+=  _setjmp.S fabs.S frexp.c infinity.c isinf.c ldexp.c modf.c setjmp.S
5 SRCS+=  flt_rounds.c fpgetmask.c fpgetround.c fpgetsticky.c fpsetmask.c \
6         fpsetround.c fpsetsticky.c
7
8 SRCS+=  sigsetjmp.S
9 SRCS+=  __divqu.S __divq.S __divlu.S __divl.S
10 SRCS+=  __remqu.S __remq.S __remlu.S __reml.S
11 SRCS+=  rfork_thread.S
12
13 CLEANFILES+=    __divqu.S __divq.S __divlu.S __divl.S
14 CLEANFILES+=    __remqu.S __remq.S __remlu.S __reml.S
15
16
17 __divqu.S: ${.CURDIR}/../libcr/alpha/gen/divrem.m4
18         m4 -DNAME=__divqu -DOP=div -DS=false -DWORDSIZE=64 \
19                 ${.ALLSRC} > ${.TARGET}
20
21 __divq.S: ${.CURDIR}/../libcr/alpha/gen/divrem.m4
22         m4 -DNAME=__divq -DOP=div -DS=true -DWORDSIZE=64 \
23                 ${.ALLSRC} > ${.TARGET}
24
25 __divlu.S: ${.CURDIR}/../libcr/alpha/gen/divrem.m4
26         m4 -DNAME=__divlu -DOP=div -DS=false -DWORDSIZE=32 \
27                 ${.ALLSRC} > ${.TARGET}
28
29 __divl.S: ${.CURDIR}/../libcr/alpha/gen/divrem.m4
30         m4 -DNAME=__divl -DOP=div -DS=true -DWORDSIZE=32 \
31                 ${.ALLSRC} > ${.TARGET}
32
33 __remqu.S: ${.CURDIR}/../libcr/alpha/gen/divrem.m4
34         m4 -DNAME=__remqu -DOP=rem -DS=false -DWORDSIZE=64 \
35                 ${.ALLSRC} > ${.TARGET}
36
37 __remq.S: ${.CURDIR}/../libcr/alpha/gen/divrem.m4
38         m4 -DNAME=__remq -DOP=rem -DS=true -DWORDSIZE=64 \
39                 ${.ALLSRC} > ${.TARGET}
40
41 __remlu.S: ${.CURDIR}/../libcr/alpha/gen/divrem.m4
42         m4 -DNAME=__remlu -DOP=rem -DS=false -DWORDSIZE=32 \
43                 ${.ALLSRC} > ${.TARGET}
44
45 __reml.S: ${.CURDIR}/../libcr/alpha/gen/divrem.m4
46         m4 -DNAME=__reml -DOP=rem -DS=true -DWORDSIZE=32 \
47                 ${.ALLSRC} > ${.TARGET}