1# @(#)Makefile.inc 8.2 (Berkeley) 02/16/94 2 3# machine-independent stdlib sources 4.PATH: ${.CURDIR}/${MACHINE}/stdlib ${.CURDIR}/stdlib 5 6SRCS+= abort.c atexit.c atof.c atoi.c atol.c bsearch.c calloc.c div.c \ 7 exit.c getenv.c getopt.c getsubopt.c heapsort.c labs.c ldiv.c \ 8 malloc.c merge.c putenv.c qsort.c radixsort.c rand.c random.c \ 9 realpath.c setenv.c strtod.c strtol.c strtoq.c strtoul.c \ 10 strtouq.c system.c 11 12# machine-dependent stdlib sources 13.include "${.CURDIR}/${MACHINE}/stdlib/Makefile.inc" 14 15MAN3+= abort.0 abs.0 alloca.0 atexit.0 atof.0 atoi.0 atol.0 bsearch.0 \ 16 calloc.0 div.0 exit.0 free.0 getenv.0 getopt.0 getsubopt.0 labs.0 \ 17 ldiv.0 malloc.0 memory.0 qsort.0 radixsort.0 rand.0 random.0 \ 18 realloc.0 realpath.0 strtod.0 strtol.0 strtoul.0 system.0 19 20MLINKS+=getenv.3 setenv.3 getenv.3 unsetenv.3 getenv.3 putenv.3 21MLINKS+=qsort.3 heapsort.3 qsort.3 mergesort.3 22MLINKS+=rand.3 srand.3 23MLINKS+=random.3 initstate.3 random.3 setstate.3 random.3 srandom.3 24MLINKS+=strtol.3 strtoq.3 25MLINKS+=strtoul.3 strtouq.3 26