diff options
author | jb <jb@FreeBSD.org> | 1997-05-03 03:50:06 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1997-05-03 03:50:06 +0000 |
commit | a1337bb0aea1f73b56821753ae8b9758996f55e4 (patch) | |
tree | e2988fbdcf4bbeae883b2bf6b71034d5bd4369ff /lib/libc/stdio | |
parent | 8063125723bbc9af61ddfefc3de495d2f827e118 (diff) | |
download | FreeBSD-src-a1337bb0aea1f73b56821753ae8b9758996f55e4.zip FreeBSD-src-a1337bb0aea1f73b56821753ae8b9758996f55e4.tar.gz |
Changed all paths to be relative to src/lib instead of src/lib/libc
so that all these makefiles can be used to build libc_r too.
Added .if ${LIB} == "c" tests to restrict man page builds to libc
to avoid needlessly building them with libc_r too.
Split libc Makefile into Makefile and Makefile.inc to allow the
libc_r Makefile to include Makefile.inc too.
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r-- | lib/libc/stdio/Makefile.inc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/libc/stdio/Makefile.inc b/lib/libc/stdio/Makefile.inc index a549be2..b86404a 100644 --- a/lib/libc/stdio/Makefile.inc +++ b/lib/libc/stdio/Makefile.inc @@ -1,8 +1,8 @@ # @(#)Makefile.inc 8.3 (Berkeley) 4/17/94 -# $Id$ +# $Id: Makefile.inc,v 1.8 1997/02/22 15:01:45 peter Exp $ # stdio sources -.PATH: ${.CURDIR}/stdio +.PATH: ${.CURDIR}/../libc/stdio SRCS+= asprintf.c clrerr.c fclose.c fdopen.c feof.c ferror.c fflush.c \ fgetc.c fgetln.c fgetpos.c fgets.c fileno.c findfp.c flags.c fopen.c \ @@ -15,6 +15,8 @@ SRCS+= asprintf.c clrerr.c fclose.c fdopen.c feof.c ferror.c fflush.c \ vfprintf.c vfscanf.c vprintf.c vscanf.c vsnprintf.c vsprintf.c \ vsscanf.c wbuf.c wsetup.c +# Only build man pages with libc. +.if ${LIB} == "c" MAN3+= stdio/fclose.3 stdio/ferror.3 stdio/fflush.3 stdio/fgetln.3 \ stdio/fgets.3 stdio/fopen.3 stdio/fputs.3 stdio/fread.3 stdio/fseek.3 \ stdio/funopen.3 stdio/getc.3 stdio/mktemp.3 stdio/printf.3 \ @@ -39,3 +41,4 @@ MLINKS+=scanf.3 fscanf.3 scanf.3 sscanf.3 scanf.3 vfscanf.3 scanf.3 vscanf.3 \ scanf.3 vsscanf.3 MLINKS+=setbuf.3 setbuffer.3 setbuf.3 setlinebuf.3 setbuf.3 setvbuf.3 MLINKS+=tmpnam.3 tempnam.3 tmpnam.3 tmpfile.3 +.endif |