# SKIP Source Code License Statement:
# ------------------------------------------------------------------
#   Copyright
#   Sun Microsystems, Inc.
# 
# 
#   Copyright (C) 1994, 1995 Sun Microsystems, Inc.  All Rights
#   Reserved.
# 
#   Permission is hereby granted, free of charge, to any person
#   obtaining a copy of this software and associated documentation
#   files (the "Software"), to deal in the Software without
#   restriction, including without limitation the rights to use,
#   copy, modify, merge, publish, distribute, sublicense, and/or sell
#   copies of the Software or derivatives of the Software, and to 
#   permit persons to whom the Software or its derivatives is furnished 
#   to do so, subject to the following conditions:
# 
#   The above copyright notice and this permission notice shall be
#   included in all copies or substantial portions of the Software.
# 
#   The Software must not be transferred to persons who are not US
#   citizens or permanent residents of the US or exported outside
#   the US (except Canada) in any form (including by electronic
#   transmission) without prior written approval from the US
#   Government. Non-compliance with these restrictions constitutes
#   a violation of the U.S. Export Control Laws.
# 
#   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
#   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
#   OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
#   NONINFRINGEMENT.  IN NO EVENT SHALL SUN MICROSYSTEMS, INC., BE LIABLE
#   FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
#   OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
#   CONNECTION WITH THE SOFTWARE OR DERIVATES OF THIS SOFTWARE OR 
#   THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# 
#   Except as contained in this notice, the name of Sun Microsystems, Inc.
#   shall not be used in advertising or otherwise to promote
#   the sale, use or other dealings in this Software or its derivatives 
#   without prior written authorization from Sun Microsystems, Inc.

#pragma ident "@(#)Makefile	1.6 95/11/24"

include ../../Makefile.defs

BIGINTDIR       = ../../bnlib
BNLIB           = $(BIGINTDIR)/$(U_DIR)/libbn.a

CERTSRCDIR      = ../lib
CERTLIB         = $(CERTSRCDIR)/$(U_DIR)/libcert.a

INCS		= -I$(BIGINTDIR) -I$(CERTSRCDIR)

LIBS            = $(CERTLIB) $(CRYPTOLIB) $(CLASSLIB) $(BNLIB)

CFLAGS		= $(U_DEBUG) $(INCS) $(OS) -D$(CLASS) $(D_TEMPLATES) $(OPTIM)

.INIT:
	@[ -d $(U_DIR) ] || mkdir -p $(U_DIR)

all: $(U_DIR)/print_cert $(U_DIR)/md5

clean:
	@-rm -rf $(U_DIR)
	@-$(SCCSCLEAN)

cleanall:
	@-rm -rf *bin.*
	@-$(SCCSCLEAN)


$(U_DIR)/md5:	$(U_DIR)/md5prog.o $(U_DIR)/md5.o
	$(CC) -I$(CERTSRCDIR) -o $@ $(U_DIR)/md5prog.o $(U_DIR)/md5.o

$(U_DIR)/md5prog.o:	md5prog.c
	$(CC) -c -I$(CERTSRCDIR) -o $@ md5prog.c

$(U_DIR)/md5.o:	$(CERTSRCDIR)/md5.c
	$(CC) -c -I$(CERTSRCDIR) -o $@ $(CERTSRCDIR)/md5.c

$(U_DIR)/print_cert:	$(U_DIR)/print_cert.o $(CERTLIB)
	$(C++) $(CFLAGS) -o $@ $(U_DIR)/print_cert.o $(LIBS)

$(U_DIR)/print_cert.o:	print_cert.C
	$(C++) -c $(CFLAGS) -o $@ print_cert.C
