]>
Commit | Line | Data |
---|---|---|
89c4ed63 A |
1 | # |
2 | # Makefile: compilation of pyUnbound and documentation, testing | |
3 | # | |
4 | # Copyright (c) 2009, Zdenek Vasicek (vasicek AT fit.vutbr.cz) | |
5 | # Marek Vavrusa (xvavru00 AT stud.fit.vutbr.cz) | |
6 | # | |
7 | # This software is open source. | |
8 | # | |
9 | # Redistribution and use in source and binary forms, with or without | |
10 | # modification, are permitted provided that the following conditions | |
11 | # are met: | |
12 | # | |
13 | # * Redistributions of source code must retain the above copyright notice, | |
14 | # this list of conditions and the following disclaimer. | |
15 | # | |
16 | # * Redistributions in binary form must reproduce the above copyright notice, | |
17 | # this list of conditions and the following disclaimer in the documentation | |
18 | # and/or other materials provided with the distribution. | |
19 | # | |
20 | # * Neither the name of the organization nor the names of its | |
21 | # contributors may be used to endorse or promote products derived from this | |
22 | # software without specific prior written permission. | |
23 | # | |
24 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
25 | # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | |
26 | # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | |
27 | # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE | |
28 | # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
29 | # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
30 | # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
31 | # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
32 | # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
33 | # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
34 | # POSSIBILITY OF SUCH DAMAGE. | |
35 | ||
36 | help: | |
37 | @echo "Please use \`make <target>' where <target> is one of" | |
38 | @echo " testenv to make test environment and run bash " | |
39 | @echo " usefull in case you don't want to install unbound but want to test examples" | |
40 | @echo " doc to make documentation" | |
41 | @echo " clean clean all" | |
42 | ||
43 | .PHONY: testenv clean doc swig | |
44 | ||
45 | #_unbound.so: ../../Makefile | |
46 | #$(MAKE) -C ../.. | |
47 | ||
48 | #../../.libs/libunbound.so.0: ../../Makefile | |
49 | #$(MAKE) -C ../.. | |
50 | ||
51 | #../../ldns-src/lib/libldns.so: ../../ldns-src/Makefile | |
52 | #$(MAKE) -C ../../ldns-src | |
53 | ||
54 | clean: | |
55 | rm -rdf examples/unbound | |
56 | rm -f _unbound.so libunbound_wrap.o | |
57 | $(MAKE) -C ../.. clean | |
58 | ||
59 | testenv: ../../.libs/libunbound.so.2 ../../ldns-src/lib/libldns.so ../../.libs/_unbound.so | |
60 | rm -rdf examples/unbound | |
61 | cd examples && mkdir unbound && ln -s ../../unbound.py unbound/__init__.py && ln -s ../../_unbound.so unbound/_unbound.so && ln -s ../../../../.libs/libunbound.so.2 unbound/libunbound.so.2 && ln -s ../../../../ldns-src/lib/libldns.so.1 unbound/libldns.so.1 && ls -la | |
62 | cd examples && if test -f ../../../.libs/_unbound.so; then cp ../../../.libs/_unbound.so . ; fi | |
63 | @echo "Run a script by typing ./script_name.py" | |
64 | cd examples && LD_LIBRARY_PATH=unbound bash | |
65 | rm -rdf examples/unbound examples/_unbound.so | |
66 | ||
67 | doc: ../../.libs/libunbound.so.0 _unbound.so | |
68 | $(MAKE) -C docs html | |
69 | ||
70 | #for development only | |
71 | swig: libunbound.i | |
72 | swig -python -o libunbound_wrap.c -I../.. libunbound.i | |
73 | gcc -c libunbound_wrap.c -O9 -fPIC -I../.. -I/usr/include/python2.5 -I. -o libunbound_wrap.o | |
74 | gcc -shared libunbound_wrap.o -L../../.libs -lunbound -o _unbound.so | |
75 |