Makefile.inc revision 10818
10SN/A#	@(#)Makefile.inc	8.2 (Berkeley) 2/16/94
23261SN/A
30SN/A# machine-independent stdlib sources
40SN/A.PATH: ${.CURDIR}/${MACHINE}/stdlib ${.CURDIR}/stdlib
50SN/A
60SN/ASRCS+=	abort.c atexit.c atof.c atoi.c atol.c bsearch.c calloc.c div.c \
72362SN/A	exit.c getenv.c getopt.c getsubopt.c strhash.c heapsort.c labs.c \
80SN/A	ldiv.c malloc.c merge.c putenv.c qsort.c radixsort.c rand.c random.c \
92362SN/A	realpath.c setenv.c strtod.c strtol.c strtoq.c strtoul.c \
100SN/A	strtouq.c system.c
110SN/A
120SN/A# machine-dependent stdlib sources
130SN/A.include "${.CURDIR}/${MACHINE}/stdlib/Makefile.inc"
140SN/A
150SN/AMAN3+=	stdlib/abort.3 stdlib/abs.3 stdlib/alloca.3 stdlib/atexit.3 \
160SN/A	stdlib/atof.3 stdlib/atoi.3 stdlib/atol.3 stdlib/bsearch.3 \
170SN/A	stdlib/calloc.3 stdlib/div.3 stdlib/exit.3 \
180SN/A	stdlib/getenv.3 stdlib/getopt.3 stdlib/getsubopt.3 stdlib/labs.3 \
190SN/A	stdlib/ldiv.3 stdlib/malloc.3 stdlib/memory.3 stdlib/qsort.3 \
200SN/A	stdlib/radixsort.3 stdlib/rand.3 stdlib/random.3 \
212362SN/A	stdlib/realpath.3 stdlib/strtod.3 stdlib/strtol.3 stdlib/strtoul.3 \
222362SN/A	stdlib/system.3
232362SN/A
240SN/AMLINKS+=getenv.3 setenv.3 getenv.3 unsetenv.3 getenv.3 putenv.3
250SN/AMLINKS+=qsort.3 heapsort.3 qsort.3 mergesort.3
260SN/AMLINKS+=rand.3 srand.3
270SN/AMLINKS+=random.3 initstate.3 random.3 setstate.3 random.3 srandom.3
283063SN/AMLINKS+=strtol.3 strtoq.3
293063SN/AMLINKS+=strtoul.3 strtouq.3
303063SN/AMLINKS+=malloc.3 free.3 malloc.3 realloc.3
313063SN/A