make makefile do *nothing* for any of the standard cases if crypt.c

doesn't exist.
This commit is contained in:
cgd 1993-05-29 13:27:15 +00:00
parent 6b5412e4fa
commit a1fe79bac5
1 changed files with 8 additions and 4 deletions

View File

@ -1,11 +1,15 @@
# $Header: /cvsroot/src/lib/libcrypt/Makefile,v 1.1 1993/04/26 12:45:00 cgd Exp $
# $Header: /cvsroot/src/lib/libcrypt/Makefile,v 1.2 1993/05/29 13:27:15 cgd Exp $
#
# This directory contains an implementation of crypt(3) and associated
# routines. it can't be shipped out of the US. it was put into this
# directory, to make distribution of exportable and non-exportable systems
# easier.
# routines. the file crypt.c can't be shipped out of the US. it was put
# into this directory to make distribution of exportable and non-exportable
# systems easier.
.if exists(crypt.c)
LIB= crypt
SRCS= crypt.c
.include <bsd.lib.mk>
.else
all install clean cleandir depend obj:
.endif