-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile
executable file
·223 lines (180 loc) · 7.51 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# BEGIN LICENSE BLOCK
# Copyright (c) 1999-2002 David Corcoran <[email protected]>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. The name of the author may not be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# Changes to this license can be made only by the copyright author with
# explicit written consent.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Alternatively, the contents of this file may be used under the terms of
# the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
# case the provisions of the LGPL are applicable instead of those above. If
# you wish to allow use of your version of this file only under the terms
# of the LGPL, and not to allow others to use your version of this file
# under the terms of the BSD license, indicate your decision by deleting
# the provisions above and replace them with the notice and other
# provisions required by the LGPL. If you do not delete the provisions
# above, a recipient may use your version of this file under the terms of
# either the BSD license or the LGPL.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# END LICENSE BLOCK
CORE_DEPTH = ..
#############################################################################
# Locations of toolkits.
#
#
# The Javacard kit, version 2.2. Version 2.1 should also work.
#
# The following need to be set in environment variables or in custom.mk.
# Examples :
#
#JAVACARD_KIT_DIR=c:/hack/java_card_kit-2_2
#
# The JDK. You need to use version 1.3.x; other versions aren't supported
# by the converter classes.
#
#JAVA_HOME=/cygdrive/c/jdk1.3.1_07/
#
# The top-level directory of Schlumberger's Cyberflex SDK.
#
#SLB_DIR=c:\Program Files\Schlumberger
#
# The top-level of the open platform toolkey
#
#OPEN_PLATFORM_DIR=C:/open_platform
-include custom.mk
ifdef SLB_DIR
# sub directory of Schlumberger's Cyberflex SDK.
SLB_JAVA_DIR=$(SLB_DIR)/Smart Cards and Terminals/Cyberflex Access Kits/v4/
endif
ifdef windir
SEP="\;"
else
SEP=":"
endif
#############################################################################
# Build Constants
#
# The Applet Identification Number.
#
AID=0x62:0x76:0x01:0xFF:0x00:0x00:0x00
#
# The Package Identification Number.
#
PID=0x62:0x76:0x01:0xFF:0x00:0x00
#
# The Java package to which the applet belongs.
#
PACKAGE=com.redhat.ckey.applet
#
# The unqualified name of the applet class.
#
APPLET_CLASS_NAME=CardEdge
#
# The directory into which output will be generated.
#
OUTPUT_DIR=output
#############################################################################
# Generated build variables.
PACKAGE_DIR=$(subst .,/,$(PACKAGE))
JAVA_SRC_FILES=$(wildcard src/$(PACKAGE_DIR)/*.java)
APPLET_QUALIFIED_CLASS_NAME=$(PACKAGE).$(APPLET_CLASS_NAME)
CONVERTER_OUTPUT_DIR=$(OUTPUT_DIR)/$(PACKAGE_DIR)/javacard
JAVAC=$(JAVA_HOME)/bin/javac
JAVA=$(JAVA_HOME)/bin/java
JAVA_SRC_FILENAMES=$(notdir $(JAVA_SRC_FILES))
JAVA_CLASS_FILES=$(patsubst %.java,$(OUTPUT_DIR)/$(PACKAGE_DIR)/%.class, $(JAVA_SRC_FILENAMES))
#############################################################################
# The ultimate output of the build is applet.ijc. This file is ready to
# be loaded onto a token.
all: $(CONVERTER_OUTPUT_DIR)/applet.ijc
clobber: clean
clean:
touch $(JAVA_SRC_FILES)
#############################################################################
# The first step in the build is to compile the Java source files (*.java)
# into class files (*.class). These class files are regular Java class files;
# they aren't specially formatted for Javacard yet.
#
# The classpath needed to compile the Java source code.
#
BUILD_CLASSPATH="$(JAVACARD_KIT_DIR)/lib/javacardframework.jar$(SEP)$(JAVACARD_KIT_DIR)/lib/api.jar$(SEP)$(OPEN_PLATFORM_DIR)/jc211/bin/visaop20.jar"
#BUILD_CLASSPATH="$(JAVACARD_KIT_DIR)/lib/javacardframework.jar"
#
# build rule
#
$(JAVA_CLASS_FILES): $(JAVA_SRC_FILES)
mkdir -p $(CONVERTER_OUTPUT_DIR)
perl ./update_buildid.pl $(JAVA_SRC_FILES)
$(JAVAC) -classpath ${BUILD_CLASSPATH} -d $(OUTPUT_DIR) $(JAVA_SRC_FILES)
#############################################################################
# The next step is to convert the regular Java class files into the Javacard
# format, using the converter program included with the Javacard Kit.
# The output from the converter is applet.cap, but the next step expects
# applet.jar, so we rename it.
#
# Classpath for the converter.
#
CONVERT_CLASSPATH="$(JAVACARD_KIT_DIR)/lib/converter.jar$(SEP)$(JAVACARD_KIT_DIR)/lib/offcardverifier.jar$(SEP)$(SLB_JAVA_DIR)/Classlibrary/jc_api_212.jar"
#
# Location of the .exp files, used for "linking" Javacard code.
#
EXPORT_PATH="$(SLB_JAVA_DIR)/Toolkit/PRGMaker/Export Files"
#
# build rule
#
$(CONVERTER_OUTPUT_DIR)/applet.jar: $(JAVA_CLASS_FILES)
@if [ "$(JAVACARD_KIT_DIR)" = "" -o "$(JAVA_HOME)" = "" -o "$(SLB_JAVA_DIR)" = "" -o "$(OPEN_PLATFORM_DIR)" = "" ]; then \
echo "Not all necessary variables have been set."; \
echo "JAVACARD_KIT_DIR=$(JAVA_CARD_KIT_DIR)"; \
echo "JAVA_HOME=$(JAVA_HOME)"; \
echo "SLB_JAVA_DIR=$(SLB_JAVA_DIR)"; \
echo "OPEN_PLATFORM_DIR=$(OPEN_PLATFORM_DIR)"; \
exit 1; \
fi
$(JAVA) -classpath ${CONVERT_CLASSPATH} com.sun.javacard.converter.Converter -classdir $(OUTPUT_DIR) -out EXP JCA CAP -exportpath $(EXPORT_PATH) -applet $(AID) $(APPLET_QUALIFIED_CLASS_NAME) -d $(OUTPUT_DIR) $(PACKAGE) $(PID) 1.0
mv $(CONVERTER_OUTPUT_DIR)/applet.cap $@
###############################################################################
# Finally, we must prepare the applet.jar file to be loaded onto a Schlumberger
# token. This means preparing it to be verified by the on-card verifier, using
# TrustedLogic's "CodeShield" technology. The Schlumberger SDK provides
# a 'makeijc' program to do this. The output is applet.ijc, which is ready to
# be loaded onto a token.
#
# Classpath for the IJC converter.
#
IJC_CLASSPATH="$(SLB_JAVA_DIR)/Toolkit/PRGMaker/makeijc.jar"
#
# build rule
#
$(CONVERTER_OUTPUT_DIR)/applet.ijc: $(CONVERTER_OUTPUT_DIR)/applet.jar
$(JAVA) -classpath $(IJC_CLASSPATH) com.slb.javacard.jctools.ijc.MakeIJC -verbose -expFileDir $(EXPORT_PATH) -type onCardVerifier $(CONVERTER_OUTPUT_DIR)/applet.jar
-@mkdir -p .libs
cp $@ .libs/CardEdge.$(shell cat .buildid).ijc
export:
libs: all