diff options
author | bde <bde@FreeBSD.org> | 1997-10-15 16:16:41 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-10-15 16:16:41 +0000 |
commit | ef5c98dd4552a60c77815d0cc9d9b7c5e80ceb62 (patch) | |
tree | 996db595d6cfe17fb2d42bb8a87dfbc0ed57c2a4 /lib/libc/stdlib | |
parent | edce646e6cec03bcb56bfcba4ee7cb8ea8d242c7 (diff) | |
download | FreeBSD-src-ef5c98dd4552a60c77815d0cc9d9b7c5e80ceb62.zip FreeBSD-src-ef5c98dd4552a60c77815d0cc9d9b7c5e80ceb62.tar.gz |
Removed the subdirectory paths from the definitions of MAN[1-9]. They
were a workaround for limitations in bsd.man.mk that were fixed about
2 years ago.
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/Makefile.inc | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/lib/libc/stdlib/Makefile.inc b/lib/libc/stdlib/Makefile.inc index 58842bf..120ea21 100644 --- a/lib/libc/stdlib/Makefile.inc +++ b/lib/libc/stdlib/Makefile.inc @@ -1,5 +1,5 @@ # from @(#)Makefile.inc 8.3 (Berkeley) 2/4/95 -# $Id: Makefile.inc,v 1.9 1997/06/22 17:54:24 phk Exp $ +# $Id: Makefile.inc,v 1.10 1997/07/01 18:39:31 phk Exp $ # machine-independent stdlib sources .PATH: ${.CURDIR}/../libc/${MACHINE}/stdlib ${.CURDIR}/../libc/stdlib @@ -13,16 +13,11 @@ SRCS+= abort.c atexit.c atof.c atoi.c atol.c bsearch.c calloc.c div.c \ # machine-dependent stdlib sources .include "${.CURDIR}/../libc/${MACHINE}/stdlib/Makefile.inc" -# Only build man pages with libc. .if ${LIB} == "c" -MAN3+= stdlib/abort.3 stdlib/abs.3 stdlib/alloca.3 stdlib/atexit.3 \ - stdlib/atof.3 stdlib/atoi.3 stdlib/atol.3 stdlib/bsearch.3 \ - stdlib/div.3 stdlib/exit.3 \ - stdlib/getenv.3 stdlib/getopt.3 stdlib/getsubopt.3 stdlib/labs.3 \ - stdlib/ldiv.3 stdlib/malloc.3 stdlib/memory.3 stdlib/qsort.3 \ - stdlib/radixsort.3 stdlib/rand.3 stdlib/random.3 \ - stdlib/realpath.3 stdlib/strtod.3 stdlib/strtol.3 stdlib/strtoul.3 \ - stdlib/system.3 +MAN3+= abort.3 abs.3 alloca.3 atexit.3 atof.3 atoi.3 atol.3 bsearch.3 \ + div.3 exit.3 getenv.3 getopt.3 getsubopt.3 labs.3 \ + ldiv.3 malloc.3 memory.3 qsort.3 radixsort.3 rand.3 random.3 \ + realpath.3 strtod.3 strtol.3 strtoul.3 system.3 MLINKS+=getenv.3 setenv.3 getenv.3 unsetenv.3 getenv.3 putenv.3 MLINKS+=qsort.3 heapsort.3 qsort.3 mergesort.3 |