6533N/A#
6533N/A# CDDL HEADER START
6533N/A#
6533N/A# The contents of this file are subject to the terms of the
6533N/A# Common Development and Distribution License (the "License").
6533N/A# You may not use this file except in compliance with the License.
6533N/A#
6533N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
6533N/A# or http://www.opensolaris.org/os/licensing.
6533N/A# See the License for the specific language governing permissions
6533N/A# and limitations under the License.
6533N/A#
6533N/A# When distributing Covered Code, include this CDDL HEADER in each
6533N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
6533N/A# If applicable, add the following below this CDDL HEADER, with the
6533N/A# fields enclosed by brackets "[]" replaced with your own identifying
6533N/A# information: Portions Copyright [yyyy] [name of copyright owner]
6533N/A#
6533N/A# CDDL HEADER END
6533N/A
6533N/A#
6533N/A# Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
6533N/A#
6533N/A
6533N/Ainclude ../../../make-rules/shared-macros.mk
6533N/A
6533N/ACFLAGS = -m64 -I../coolkey-1.1.0/src/coolkey
6533N/ALDFLAGS = -L/usr/lib/64 -R/usr/lib/64
6533N/ALIBS = -lcoolkeypk11 -lckyapplet -lpcsclite -lz -lpthread
6533N/A
6533N/Aall:
6533N/A $(MAKE) build-test
6533N/A
6533N/Abuild-test: test.c
6533N/A $(CC) $(CFLAGS) $(LDFLAGS) -o testcoolkey test.c $(LIBS)
6533N/A
6533N/Aclean:
6533N/A rm -f testcoolkey
6533N/A
6533N/A.PHONY: all clean
6533N/A