aboutsummaryrefslogtreecommitdiff
path: root/openssl/trunk/doc/crypto/ERR_load_strings.pod
diff options
context:
space:
mode:
Diffstat (limited to 'openssl/trunk/doc/crypto/ERR_load_strings.pod')
0 files changed, 0 insertions, 0 deletions
es again.' href='/sra/rpki.net/commit/rcynic/Makefile.in?id=f05001f84d966a0b0c80b9d5212c2f3ac11d1660'>f05001f8
775ba62d

1b5c8c4c


6bee4784
1b5c8c4c

6b34f4c5
f05001f8
a9ce71c8

1cd345a0
d8d9bc4e
129913e5
3b361f01
ae9e5fcd
1b55e288
3b361f01
1b55e288
c3376328
6bee4784
56f544af
886252d1




8f913752

















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

      
             
 


               
 


                                                                            
 


                                     

                   


           
                                   

                           
              
                                                       

            
                                                                                                                    
 
                                               
                                                                                           
 
                    
                                                                                             
 
                         
                                   
                                                                    




                    

















                                                                           
# $Id$

NAME = rcynic

BIN = ${NAME}
SRC = ${NAME}.c
OBJ = ${NAME}.o

CFLAGS = @CFLAGS@ -Wall -Wshadow -Wmissing-prototypes -Wmissing-declarations
LDFLAGS = @LDFLAGS@ @LD_STATIC_FLAG@
LIBS = @LIBS@

abs_top_srcdir	 = @abs_top_srcdir@
abs_top_builddir = @abs_top_builddir@

host_os = @host_os@

all: ${BIN}

clean:
	cd static-rsync; ${MAKE} $@
	rm -f ${BIN} ${OBJ}

${BIN}: ${SRC}
	${CC} ${CFLAGS} -o $@ ${SRC} ${LDFLAGS} ${LIBS}

test: ${BIN}
	if test -r rcynic.conf; then ./${BIN} -j 0 && echo && ./show.sh; else echo No rcynic.conf, skipping test; fi

install: ${BIN} installation-scripts/install.sh
	cd installation-scripts; host_os="${host_os}"; DESTDIR="${DESTDIR}"; . ./install.sh

uninstall deinstall:
	cd installation-scripts; host_os="${host_os}"; DESTDIR="${DESTDIR}"; . ./deinstall.sh

distclean: clean docclean
	cd static-rsync; ${MAKE} $@
	rm -f show.sh installation-scripts/linux/install.sh Makefile

tags: TAGS

TAGS: ${SRC}
	etags ${SRC}

# Doc stuff right now is just internals doc, of interest only to
# programmers.  Real doc for rcynic is still the README.  This may
# change some day.

html:
	TZ='' doxygen

pdf: html
	cd doc/latex && TZ='' ${MAKE} pdf && ln -f refman.pdf ../manual.pdf

tgz: html
	cd doc && tar -cf - html | gzip -9 >manual.tar.gz

docs: html pdf tgz

docclean:
	rm -rf doc