]>
Commit | Line | Data |
---|---|---|
5b2abdfb A |
1 | # from @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 |
2 | # $FreeBSD: src/lib/libc/quad/Makefile.inc,v 1.8 1999/08/28 00:00:27 peter Exp $ | |
3 | ||
4 | # Quad support, if needed | |
5 | .PATH: ${.CURDIR}/../libc/${MACHINE_ARCH}/quad ${.CURDIR}/../libc/quad | |
6 | ||
7 | .if ${MACHINE_ARCH} == "i386" | |
8 | ||
59e0d9fe | 9 | MISRCS+= cmpdi2.c divdi3.c moddi3.c qdivrem.c ucmpdi2.c udivdi3.c umoddi3.c |
5b2abdfb A |
10 | |
11 | .else | |
12 | ||
59e0d9fe | 13 | MISRCS+= adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c fixdfdi.c \ |
5b2abdfb A |
14 | fixsfdi.c fixunsdfdi.c fixunssfdi.c floatdidf.c floatdisf.c \ |
15 | floatunsdidf.c iordi3.c lshldi3.c lshrdi3.c moddi3.c muldi3.c \ | |
16 | negdi2.c notdi2.c qdivrem.c subdi3.c ucmpdi2.c udivdi3.c umoddi3.c \ | |
17 | xordi3.c | |
18 | ||
19 | .endif |