xref: /illumos-gate/usr/src/cmd/cmd-crypto/pktool/Makefile (revision cc6c5292fa8a241fe50604cf6a918edfbf7cd7d2)
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, Version 1.0 only
6# (the "License").  You may not use this file except in compliance
7# with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22#
23# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26# ident	"%Z%%M%	%I%	%E% SMI"
27#
28
29PROG =	pktool
30
31OBJS =	pktool.o \
32	common.o \
33	derparse.o \
34	osslcommon.o \
35	p12common.o \
36	setpin.o \
37	list.o \
38	delete.o \
39	import.o \
40	export.o \
41	tokens.o
42
43include ../../Makefile.cmd
44include $(SRC)/lib/openssl/Makefile.openssl
45
46SRCS =	$(OBJS:%.o=%.c)
47POFILES = $(OBJS:%.o=%.po)
48POFILE = $(PROG)_msg.po
49
50CPPFLAGS += -I. $(OPENSSL_CPPFLAGS)
51CFLAGS += $(CCVERBOSE)
52
53DYNFLAGS += $(OPENSSL_DYNFLAGS)
54LDFLAGS += $(OPENSSL_LDFLAGS)
55LDLIBS += -lpkcs11 -lcryptoutil -lcrypto -lldap
56
57LINTFLAGS += $(OPENSSL_LDFLAGS)
58
59.KEEP_STATE:
60
61all : $(PROG)
62
63$(PROG) : $(OBJS)
64	$(LINK.c) -o $@ $(OBJS) $(DYNFLAGS) $(LDLIBS)
65	$(POST_PROCESS)
66
67$(POFILE) : $(POFILES)
68	$(RM) $@; cat $(POFILES) > $@
69
70install : all $(ROOTPROG)
71
72clean :
73	$(RM) $(OBJS)
74
75lint : lint_SRCS
76
77include ../../Makefile.targ
78
79