1#**************************************************************
2#
3#  Licensed to the Apache Software Foundation (ASF) under one
4#  or more contributor license agreements.  See the NOTICE file
5#  distributed with this work for additional information
6#  regarding copyright ownership.  The ASF licenses this file
7#  to you under the Apache License, Version 2.0 (the
8#  "License"); you may not use this file except in compliance
9#  with the License.  You may obtain a copy of the License at
10#
11#    http://www.apache.org/licenses/LICENSE-2.0
12#
13#  Unless required by applicable law or agreed to in writing,
14#  software distributed under the License is distributed on an
15#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16#  KIND, either express or implied.  See the License for the
17#  specific language governing permissions and limitations
18#  under the License.
19#
20#**************************************************************
21
22
23
24PRJ=..
25
26
27PRJNAME=postprocess
28TARGET=signing
29
30.INCLUDE : settings.mk
31
32# PFXFILE	has to be set elsewhere
33# PFXPASSWORD	has to be set elsewhere
34
35.IF "$(VISTA_SIGNING)"!=""
36.IF "$(COM)"=="MSC"
37.IF "$(product)"=="full"
38
39EXCLUDELIST=no_signing.txt
40LOGFILE=$(MISC)$/signing_log.txt
41IMAGENAMES=$(SOLARBINDIR)$/*.dll $(SOLARBINDIR)$/so$/*.dll $(SOLARBINDIR)$/*.exe $(SOLARBINDIR)$/so$/*.exe
42TIMESTAMPURL*="http://timestamp.verisign.com/scripts/timstamp.dll"
43
44signing.done : $(MISC)/signing-filelist.txt
45	$(PERL) signing.pl -e $(EXCLUDELIST) -f $(PFXFILE) -p $(PFXPASSWORD) -t $(TIMESTAMPURL) -i $(MISC)/signing-filelist.txt && $(TOUCH) $(MISC)$/signing.done
46
47# Create a file that contains all dlls that are to be signed.
48$(MISC)/signing-filelist.txt :
49	-ls -1U $(IMAGENAMES) > $@ 2>/dev/null
50
51.INCLUDE : target.mk
52
53.ELSE  # "$(product)"=="full"
54all :
55	@echo Doing nothing on non product builds ...
56.ENDIF # "$(product)"=="full"
57.ELSE  # "$(GUI)"=="MSC"
58all :
59	@echo Nothing to do, signing is Windows \(MSC\) only.
60.ENDIF # "$(GUI)"=="MSC"
61.ELSE  # "$(VISTA_SIGNING)"!=""
62all :
63	@echo Doing nothing. To switch on signing set VISTA_SIGNING=TRUE ...
64.ENDIF # "$(VISTA_SIGNING)"!=""
65