Commit 42941e4f authored by ASN.1 Documenter's avatar ASN.1 Documenter
Browse files

fix SREM SSP version

parent 2a31d041
Loading
Loading
Loading
Loading

.gitignore

0 → 100755
+1 −0
Original line number Original line Diff line number Diff line
build/*-d
+1 −1
Original line number Original line Diff line number Diff line
@@ -155,7 +155,7 @@ all: $(dirs) $(predirs) $(alibnames) $(solibnames) $(binnames) $(postdirs)
tests: all $(testbins)
tests: all $(testbins)


$(predirs) $(postdirs): DUMMY
$(predirs) $(postdirs): DUMMY
	$(MAKE) -C $@ DEBUG=$(DEBUG)
	$(MAKE) -C $@ DEBUG=$(DEBUG) PROJECTROOT=../$(PROJECTROOT) BUILDROOT=../$(BUILDROOT)


$(alibnames): $(outdir)/lib%.a : $(objects)
$(alibnames): $(outdir)/lib%.a : $(objects)
	ar rcs $@ $^
	ar rcs $@ $^
+2 −2
Original line number Original line Diff line number Diff line
@@ -6,7 +6,7 @@
##  This code is provided under the CeCill-C license agreement.
##  This code is provided under the CeCill-C license agreement.
######################################################################
######################################################################
PROJECTROOT    = ..
PROJECTROOT    = ..
BUILDROOT      = ../build
BUILDROOT      = $(PROJECTROOT)/build
PROJECT        = certgen
PROJECT        = certgen
DEBUG          = yes
DEBUG          = yes
bins           = certgen keygen
bins           = certgen keygen
@@ -18,4 +18,4 @@ packages += cshared openssl
predirs       := asncodec
predirs       := asncodec
includes      += asncodec
includes      += asncodec
libs          += $(outdir)/libItsCertAsn.a
libs          += $(outdir)/libItsCertAsn.a
include ../common.mk
include $(BUILDROOT)/common.mk
+1 −1
Original line number Original line Diff line number Diff line
@@ -225,7 +225,7 @@
    <xsl:when test="@value = 'TLM' or @value = 'SPAT' or @value=$AID-SPAT">01 E0</xsl:when>
    <xsl:when test="@value = 'TLM' or @value = 'SPAT' or @value=$AID-SPAT">01 E0</xsl:when>
    <xsl:when test="@value = 'RLT' or @value = 'MAP' or @value=$AID-MAP">01 C0</xsl:when>
    <xsl:when test="@value = 'RLT' or @value = 'MAP' or @value=$AID-MAP">01 C0</xsl:when>
    <xsl:when test="@value = 'IVI' or @value=$AID-IVI">01 00 00 00 FF F8</xsl:when>
    <xsl:when test="@value = 'IVI' or @value=$AID-IVI">01 00 00 00 FF F8</xsl:when>
    <xsl:when test="@value = 'TLC' or @value=$AID-SREM or @value='SREM'">01 FF FF E0</xsl:when>
    <xsl:when test="@value = 'TLC' or @value=$AID-SREM or @value='SREM'">02 FF FF E0</xsl:when>
    <xsl:when test="@value = 'SSEM' or @value=$AID-SSEM">01</xsl:when>
    <xsl:when test="@value = 'SSEM' or @value=$AID-SSEM">01</xsl:when>
    <xsl:when test="@value = 'GPC' or @value=$AID-GPC">01</xsl:when>
    <xsl:when test="@value = 'GPC' or @value=$AID-GPC">01</xsl:when>
    <xsl:when test="@value = 'CRT-REQ' or @value = $AID-CRT-REQ">
    <xsl:when test="@value = 'CRT-REQ' or @value = $AID-CRT-REQ">
+2 −2
Original line number Original line Diff line number Diff line
@@ -6,10 +6,10 @@
##  This code is provided under the CeCill-C license agreement.
##  This code is provided under the CeCill-C license agreement.
######################################################################
######################################################################
PROJECTROOT    = ../..
PROJECTROOT    = ../..
BUILDROOT      = ../../build
BUILDROOT      = $(PROJECTROOT)/build
PROJECT        = ItsCertAsn
PROJECT        = ItsCertAsn
DEBUG          = yes
DEBUG          = yes
alibs          = ItsCertAsn
alibs          = ItsCertAsn
sources       := $(wildcard *.c)
sources       := $(wildcard *.c)
includes      += .
includes      += .
include ../../common.mk
include $(BUILDROOT)/common.mk
Loading