aboutsummaryrefslogtreecommitdiff
path: root/openssl/trunk/crypto/dh/dh.h
diff options
context:
space:
mode:
Diffstat (limited to 'openssl/trunk/crypto/dh/dh.h')
0 files changed, 0 insertions, 0 deletions
ctrn.net> 2006-10-05 18:16:14 +0000 LDFALGS' href='/sra/rpki.net/commit/rcynic/Makefile?h=zone-cleanup&id=192705c95332c352d7a4e3fff9ff39e50fef4c03'>192705c9
a9ce71c8

df7ec3bf
3fbc29dd
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 ..