Makefile revision 1.9
11.8Smycroft# from: @(#)Makefile 5.2 (Berkeley) 3/5/91 21.9Sderaadt# $Id: Makefile,v 1.9 1993/09/05 22:12:35 deraadt Exp $ 31.1Scgd# 41.1Scgd# All library objects contain sccsid strings by default; they may be 51.1Scgd# excluded as a space-saving measure. To produce a library that does 61.1Scgd# not contain these strings, delete -DLIBC_SCCS and -DSYSLIBC_SCCS 71.1Scgd# from CFLAGS below. To remove these strings from just the system call 81.1Scgd# stubs, remove just -DSYSLIBC_SCCS from CFLAGS. 91.4Sderaadt# 101.6Sderaadt# The YP functions are always in libc. To choose that getpwent() and friends 111.6Sderaadt# actually call the YP functions, put -DYP on the CFLAGS line below. 121.4Sderaadt 131.1ScgdLIB=c 141.9SderaadtCFLAGS+=-DYP -DLIBC_SCCS -DSYSLIBC_SCCS 151.1ScgdAINC= -I${.CURDIR}/${MACHINE} 161.9Sderaadt 171.9Sderaadt.if exists (${.CURDIR}/${MACHINE}/Makefile.inc) 181.9Sderaadt.PATH: ${.CURDIR}/${MACHINE} 191.9Sderaadt.include "${.CURDIR}/${MACHINE}/Makefile.inc" 201.9Sderaadt.endif 211.1Scgd 221.7Scgd.include "${.CURDIR}/db/Makefile.inc" 231.1Scgd.include "${.CURDIR}/compat-43/Makefile.inc" 241.1Scgd.include "${.CURDIR}/gen/Makefile.inc" 251.1Scgd.include "${.CURDIR}/locale/Makefile.inc" 261.1Scgd.include "${.CURDIR}/net/Makefile.inc" 271.1Scgd.include "${.CURDIR}/stdio/Makefile.inc" 281.1Scgd.include "${.CURDIR}/stdlib/Makefile.inc" 291.1Scgd.include "${.CURDIR}/string/Makefile.inc" 301.1Scgd.include "${.CURDIR}/sys/Makefile.inc" 311.4Sderaadt.include "${.CURDIR}/yp/Makefile.inc" 321.4Sderaadt.include "${.CURDIR}/rpc/Makefile.inc" 331.1Scgd 341.1Scgd.include <bsd.lib.mk> 35