added mips case
[unix-history] / usr / src / lib / libc / stdlib / Makefile.inc
CommitLineData
22cab3c4 1# @(#)Makefile.inc 5.9 (Berkeley) %G%
746da780
KB
2
3# stdlib sources
4.PATH: ${.CURDIR}/${MACHINE}/stdlib ${.CURDIR}/stdlib
5
6SRCS+= abort.c atexit.c atoi.c atol.c bsearch.c calloc.c div.c exit.c \
cd1bf0c3
KB
7 getenv.c getopt.c getsubopt.c heapsort.c labs.c ldiv.c malloc.c \
8 multibyte.c putenv.c qsort.c radixsort.c rand.c random.c setenv.c \
9 strtol.c strtoul.c system.c
746da780
KB
10
11.if (${MACHINE} == "hp300")
12SRCS+= abs.s atof.c
13.elif (${MACHINE} == "i386")
14SRCS+= abs.s atof.c
22cab3c4
RC
15.elif (${MACHINE} == "mips")
16SRCS+= abs.s atof.c
746da780
KB
17.elif (${MACHINE} == "tahoe")
18SRCS+= abs.s atof.s
19.elif (${MACHINE} == "vax")
20SRCS+= abs.s atof.s
21.endif
22
063cc0f0 23MAN3+= abort.0 abs.0 alloca.0 atexit.0 atof.0 atoi.0 atol.0 bsearch.0 \
cd1bf0c3
KB
24 calloc.0 div.0 exit.0 free.0 getenv.0 getopt.0 getsubopt.0 labs.0 \
25 ldiv.0 malloc.0 memory.0 qsort.0 radixsort.0 rand.0 random.0 \
26 realloc.0 strtod.0 strtol.0 strtoul.0 system.0
746da780 27
746da780 28MLINKS+=getenv.3 setenv.3 getenv.3 unsetenv.3 getenv.3 putenv.3
d052fbea 29MLINKS+=qsort.3 heapsort.3
746da780 30MLINKS+=rand.3 srand.3
d73b08c7 31MLINKS+=random.3 initstate.3 random.3 setstate.3 random.3 srandom.3