aboutsummaryrefslogtreecommitdiff
path: root/openssl/trunk/util/sp-diff.pl
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2006-09-19 16:36:42 +0000
committerRob Austein <sra@hactrn.net>2006-09-19 16:36:42 +0000
commit9a1ef7b64d12c2fd048c0953705e3c97e64260de (patch)
tree7512faf66f613aaa6811cd9e129da3a555a06bfa /openssl/trunk/util/sp-diff.pl
parent35abe4ef9357c0db814fe4d9f2ba13ed9cc9fcd1 (diff)
Start using --delete (wow, a lot of stuff went away). Stop fixing
broken SIA URIs. Clean up rsync() functions. Clean up old trust anchor URIs. svn path=/scripts/rcynic-prototype.pl; revision=287
Diffstat (limited to 'openssl/trunk/util/sp-diff.pl')
0 files changed, 0 insertions, 0 deletions
/span>
d8d9bc4e

5f0a1948
ae9e5fcd





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
      
                                
 

                                                                                               
                 











                                
                                               
            
                     
                                                                                  
                                  
                                  




                                                       
# $Id$

OPENSSL_DIR = ../openssl/openssl

# Disable -Werror as long as we're using OpenSSL snapshots.

CFLAGS = -g -I${OPENSSL_DIR}/include -Wall -Wshadow -Wmissing-prototypes -Wmissing-declarations
LDFLAGS = -static

# -H -Wl,-t

BIN = rcynic
OBJ = rcynic.o
LIB = ${OPENSSL_DIR}/libcrypto.a

all: ${BIN}

clean:
	rm -f ${BIN} ${OBJ}

${BIN}: ${OBJ} ${LIB} Makefile
	${CC} -g -o $@ ${OBJ} ${LIB} ${LDFLAGS}

test: ${BIN}
	./${BIN} -j 0
	-xsltproc --param refresh 0 rcynic.xsl rcynic.xml | w3m -T text/html -dump

install: ${BIN} scripts/install.sh
	cd scripts; . ./install.sh

doc::
	doxygen

doc::
	cd doc/latex && make pdf && ln -f refman.pdf ..