head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	99.01.23.08.27.45;	author markm;	state dead;
branches;
next	1.1;

1.1
date	99.01.21.13.51.04;	author brandon;	state Exp;
branches;
next	;


desc
@@


1.2
log
@The new crypt code broke "make world". Back it out.
@
text
@#
#	Hacked Makefile to compile and run the DES-certification program,
#	but not install anything.
#
# $Id: Makefile,v 1.1 1999/01/21 13:51:04 brandon Exp $
#
LIBCRYPT= -lcrypt

#CFLAGS+= -DHAVE_CRYPT16
CFLAGS+= -ggdb

TARGETS=cert speedcrypt

all: ${TARGETS}

test: all testcrypt testspeed

testcrypt: cert
	@@./cert -c

testspeed: cryptspeed

cryptspeed: speedcrypt
	@@./speedcrypt 30 1
	@@./speedcrypt 30 1
	@@./speedcrypt 30 0
	@@./speedcrypt 30 0

cert: cert.c
	$(CC) $(CFLAGS) -o cert ${.CURDIR}/cert.c ${LIBCRYPT}

speedcrypt: speedcrypt.c
	$(CC) $(CFLAGS) -o speedcrypt ${.CURDIR}/speedcrypt.c ${LIBCRYPT}

clean:
	rm -f ${TARGETS}

install:

obj:

.include <bsd.prog.mk>
@


1.1
log
@Moved from the old secure/lib/libcrypt area, because of the rewrite to how
the Makefile handles des support by just including the single .c file.

Reviewed by:	Mark Murray
@
text
@d5 1
a5 1
# $Id: Makefile,v 1.5 1996/06/24 20:28:35 markm Exp $
@

