Makefile revision 1.5
11.1Scgd# @(#)Makefile 5.2 (Berkeley) 3/5/91 21.1Scgd# 31.1Scgd# All library objects contain sccsid strings by default; they may be 41.1Scgd# excluded as a space-saving measure. To produce a library that does 51.1Scgd# not contain these strings, delete -DLIBC_SCCS and -DSYSLIBC_SCCS 61.1Scgd# from CFLAGS below. To remove these strings from just the system call 71.1Scgd# stubs, remove just -DSYSLIBC_SCCS from CFLAGS. 81.4Sderaadt# 91.4Sderaadt# To produce a library that does YP, add -DYP to CFLAGS below. 101.4Sderaadt 111.1ScgdLIB=c 121.5ScgdCFLAGS+=-DYP -DLIBC_SCCS -DSYSLIBC_SCCS 131.1ScgdAINC= -I${.CURDIR}/${MACHINE} 141.1Scgd 151.3Sproven.include "${.CURDIR}/DB/Makefile.inc" 161.1Scgd.include "${.CURDIR}/compat-43/Makefile.inc" 171.1Scgd.include "${.CURDIR}/gen/Makefile.inc" 181.1Scgd.include "${.CURDIR}/locale/Makefile.inc" 191.1Scgd.include "${.CURDIR}/net/Makefile.inc" 201.1Scgd.include "${.CURDIR}/stdio/Makefile.inc" 211.1Scgd.include "${.CURDIR}/stdlib/Makefile.inc" 221.1Scgd.include "${.CURDIR}/string/Makefile.inc" 231.1Scgd.include "${.CURDIR}/sys/Makefile.inc" 241.4Sderaadt.include "${.CURDIR}/yp/Makefile.inc" 251.4Sderaadt.include "${.CURDIR}/rpc/Makefile.inc" 261.1Scgd 271.1Scgd.include <bsd.lib.mk> 28