# 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.11 95/11/20 Sun Microsystems"
#

include ../../Makefile.defs

CFLAGS	=	-I. -I$(COMM_INC)  $(K_DEBUG) 
CPPFLAGS=	$(K_FLAGS) 
OBJS	=	$(K_DIR)/skip_hdr.o $(K_DIR)/skip_es_bypass.o \
		$(K_DIR)/skip_crypt.o $(K_DIR)/skip_ioctl.o \
		$(K_DIR)/skip_keystore.o $(K_DIR)/skip_keymgrmsgs.o \
		$(K_DIR)/skip_ipsp.o $(K_DIR)/skip_nsid.o

HDRS	= 	$(COMM_INC)/skip_key.h $(COMM_INC)/skip_keymgrmsgs.h \
		$(COMM_INC)/skip_crypt.h  $(COMM_INC)/skip_ioctl.h \
		$(COMM_INC)/bdcmod.h $(COMM_INC)/skip_es.h \
		$(COMM_INC)/skip_types.h $(COMM_INC)/skip_proto.h

DRVOS4	=	../sunos
DRVOS5	=	../es

DRVINC	=	$(DRVOS$(MAJOR_OS))

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

all: $(OBJS) $($(AHOBJS))

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

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

$(K_DIR)/%.o: %.c $(HDRS) $(SYSINC) $(DRVINC)/skip_if.h
	$(CC) -c $(CPPFLAGS) $(CFLAGS) -I$(DRVINC) -o $(K_DIR)/$*.o $<
