1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9# or http://www.opensolaris.org/os/licensing. 10# See the License for the specific language governing permissions 11# and limitations under the License. 12# 13# When distributing Covered Code, include this CDDL HEADER in each 14# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15# If applicable, add the following below this CDDL HEADER, with the 16# fields enclosed by brackets "[]" replaced with your own identifying 17# information: Portions Copyright [yyyy] [name of copyright owner] 18# 19# CDDL HEADER END 20# 21# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 22# Use is subject to license terms. 23# 24 25PROG = pktool 26 27OBJS = pktool.o \ 28 common.o \ 29 setpin.o \ 30 list.o \ 31 delete.o \ 32 import.o \ 33 inittoken.o \ 34 export.o \ 35 tokens.o \ 36 gencert.o \ 37 gencsr.o \ 38 download.o \ 39 genkey.o \ 40 signcsr.o 41 42include ../../Makefile.cmd 43 44KMFDIR = $(SRC)/lib/libkmf 45SRCS = $(OBJS:%.o=%.c) 46POFILES = $(OBJS:%.o=%.po) 47POFILE = $(PROG)_msg.po 48MSGFILES=$(SRCS:%.c=%.i) 49 50CPPFLAGS += -I. -I$(KMFDIR)/include -I/usr/include/libxml2 51CFLAGS += $(CCVERBOSE) -DDEBUG 52 53#LDFLAGS += -L$(SRC)/lib/libkmf/libkmf/$(MACH) 54LDLIBS += -lkmf -lpkcs11 -lcryptoutil 55 56.KEEP_STATE: 57 58all : $(PROG) 59 60$(PROG) : $(OBJS) 61 $(LINK.c) -o $@ $(OBJS) $(DYNFLAGS) $(LDLIBS) 62 $(POST_PROCESS) 63 64$(POFILE) : $(POFILES) 65 $(RM) $@; $(CAT) $(POFILES) > $@ 66 67install : all $(ROOTPROG) 68 69clean : 70 $(RM) $(OBJS) 71 72lint : lint_SRCS 73 74include ../../Makefile.targ 75