updated perlasm files
[gnutls:gnutls.git] / cfg.mk
1 # Copyright (C) 2006-2012 Free Software Foundation, Inc.
2 #
3 # Author: Simon Josefsson
4 #
5 # This file is part of GnuTLS.
6 #
7 # This file is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This file is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this file; if not, write to the Free Software Foundation,
19 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20
21 WFLAGS ?= --enable-gcc-warnings
22 ADDFLAGS ?=
23 CFGFLAGS ?= --enable-gtk-doc --enable-gtk-doc-pdf --enable-gtk-doc-html $(ADDFLAGS) $(WFLAGS)
24 PACKAGE ?= gnutls
25
26 .PHONY: config
27
28 INDENT_SOURCES = `find . -name \*.[ch] -o -name gnutls.h.in | grep -v -e ^./build-aux/ -e ^./lib/minitasn1/ -e ^./lib/build-aux/ -e ^./gl/ -e ^./src/libopts/ -e -gaa.[ch] -e asn1_tab.c -e ^./tests/suite/`
29
30 ifeq ($(.DEFAULT_GOAL),abort-due-to-no-makefile)
31 .DEFAULT_GOAL := bootstrap
32 endif
33
34 PODIR := po
35 PO_DOMAIN := libgnutls
36
37 local-checks-to-skip = sc_GPL_version sc_bindtextdomain                 \
38         sc_immutable_NEWS sc_program_name sc_prohibit_atoi_atof         \
39         sc_prohibit_empty_lines_at_EOF sc_prohibit_hash_without_use     \
40         sc_prohibit_have_config_h sc_prohibit_magic_number_exit         \
41         sc_prohibit_strcmp sc_require_config_h                          \
42         sc_require_config_h_first sc_texinfo_acronym sc_trailing_blank  \
43         sc_unmarked_diagnostics sc_useless_cpp_parens                   \
44         sc_two_space_separator_in_usage
45
46 VC_LIST_ALWAYS_EXCLUDE_REGEX = ^maint.mk|gtk-doc.make|m4/pkg|doc/fdl-1.3.texi|po/.*.po.in|src/crywrap/|(devel/perlasm/|lib/accelerated/x86/|build-aux/|gl/|src/libopts/|tests/suite/ecore/|doc/protocol/).*$$
47 update-copyright-env = UPDATE_COPYRIGHT_USE_INTERVALS=1
48
49 # Explicit syntax-check exceptions.
50 exclude_file_name_regexp--sc_error_message_period = ^src/crywrap/crywrap.c$$
51 exclude_file_name_regexp--sc_error_message_uppercase = ^doc/examples/ex-cxx.cpp|guile/src/core.c|src/certtool.c|src/ocsptool.c|src/crywrap/crywrap.c|tests/pkcs12_encode.c$$
52 exclude_file_name_regexp--sc_file_system = ^doc/doxygen/Doxyfile
53 exclude_file_name_regexp--sc_prohibit_cvs_keyword = ^lib/nettle/.*$$
54 exclude_file_name_regexp--sc_prohibit_undesirable_word_seq = ^tests/nist-pkits/gnutls-nist-tests.html$$
55 exclude_file_name_regexp--sc_space_tab = ^doc/.*.(pdf|png)|tests/nist-pkits/|tests/suite/x509paths/.*$$
56
57 autoreconf:
58         for f in $(PODIR)/*.po.in; do \
59                 cp $$f `echo $$f | sed 's/.in//'`; \
60         done
61         mv build-aux/config.rpath build-aux/config.rpath-
62         autopoint
63         rm -f m4/codeset.m4 m4/gettext.m4 m4/glibc21.m4 m4/glibc2.m4 m4/iconv.m4 m4/intdiv0.m4 m4/intldir.m4 m4/intl.m4 m4/intlmacosx.m4 m4/intmax.m4 m4/inttypes_h.m4 m4/inttypes-pri.m4 m4/lcmessage.m4 m4/lib-ld.m4 m4/lib-link.m4 m4/lib-prefix.m4 m4/lock.m4 m4/longlong.m4 m4/nls.m4 m4/po.m4 m4/printf-posix.m4 m4/progtest.m4 m4/size_max.m4 m4/stdint_h.m4 m4/uintmax_t.m4 m4/wchar_t.m4 m4/wint_t.m4 m4/visibility.m4 m4/xsize.m4
64         touch ChangeLog
65         test -f ./configure || AUTOPOINT=true autoreconf --install
66         mv build-aux/config.rpath- build-aux/config.rpath
67
68 update-po: refresh-po
69         for f in `ls $(PODIR)/*.po | grep -v quot.po`; do \
70                 cp $$f $$f.in; \
71         done
72         git add $(PODIR)/*.po.in
73         git commit -m "Sync with TP." $(PODIR)/LINGUAS $(PODIR)/*.po.in
74
75 config:
76         ./configure $(CFGFLAGS)
77
78 bootstrap: autoreconf
79
80 # The only non-lgpl modules used are: gettime progname timespec. Those
81 # are not used (and must not be used) in the library)
82 glimport:
83         ../gnulib/gnulib-tool --dir=. --local-dir=gl/override --lib=libgnu --source-base=gl --m4-base=gl/m4 --doc-base=doc --tests-base=gl/tests --aux-dir=build-aux --add-import --lgpl=2
84         ../gnulib/gnulib-tool --dir=. --local-dir=src/gl/override --lib=libgnu_gpl --source-base=src/gl --m4-base=src/gl/m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --add-import
85
86 # Code Coverage
87
88 pre-coverage:
89         ./configure --disable-cxx
90         ln -s . gl/tests/glthread/glthread
91         ln -sf /usr/local/share/gaa/gaa.skel src/gaa.skel
92
93 web-coverage:
94         rm -fv `find $(htmldir)/coverage -type f | grep -v CVS`
95         cp -rv doc/coverage/* $(htmldir)/coverage/
96
97 upload-web-coverage:
98         cd $(htmldir) && \
99                 cvs commit -m "Update." coverage
100
101 # Clang
102
103 clang:
104         make clean
105         scan-build ./configure
106         rm -rf scan.tmp
107         scan-build -o scan.tmp make
108
109 clang-copy:
110         rm -fv `find $(htmldir)/clang -type f | grep -v CVS`
111         mkdir -p $(htmldir)/clang/
112         cp -rv scan.tmp/*/* $(htmldir)/clang/
113
114 clang-upload:
115         cd $(htmldir) && \
116                 cvs add clang || true && \
117                 cvs add clang/*.css clang/*.js clang/*.html || true && \
118                 cvs commit -m "Update." clang
119
120 # Release
121
122 ChangeLog:
123         git log --pretty --numstat --summary --since="2011 November 07" -- | git2cl > ChangeLog
124         cat .clcopying >> ChangeLog
125
126 tag = $(PACKAGE)_`echo $(VERSION) | sed 's/\./_/g'`
127 htmldir = ../www-$(PACKAGE)
128
129 release: syntax-check prepare upload web upload-web
130
131 prepare:
132         ! git tag -l $(tag) | grep $(PACKAGE) > /dev/null
133         rm -f ChangeLog
134         $(MAKE) ChangeLog distcheck
135         $(MAKE) -C doc/manpages/ manpages-update
136         git commit -m Generated. ChangeLog
137         git tag -u b565716f! -m $(VERSION) $(tag)
138
139 upload-tarballs:
140         git push
141         git push --tags
142         build-aux/gnupload --to alpha.gnu.org:$(PACKAGE) $(distdir).tar.xz
143         build-aux/gnupload --to alpha.gnu.org:$(PACKAGE) $(distdir).tar.lz
144         cp $(distdir).tar.xz $(distdir).tar.xz.sig ../releases/$(PACKAGE)/
145         cp $(distdir).tar.lz $(distdir).tar.lz.sig ../releases/$(PACKAGE)/
146
147
148 web:
149         echo generating documentation for $(PACKAGE)
150         make -C doc gnutls.html
151         cd doc && cp gnutls.html *.png ../$(htmldir)/manual/
152         cd doc && makeinfo --html --split=node -o ../$(htmldir)/manual/html_node/ --css-include=./texinfo.css gnutls.texi
153         cd doc && cp *.png ../$(htmldir)/manual/html_node/
154         sed 's/\@VERSION\@/$(VERSION)/g' -i $(htmldir)/manual/html_node/*.html $(htmldir)/manual/gnutls.html
155         -cd doc && make gnutls.epub && cp gnutls.epub ../$(htmldir)/manual/
156         cd doc/latex && make gnutls.pdf && cp gnutls.pdf ../../$(htmldir)/manual/
157         #cd doc/doxygen && doxygen && cd ../.. && cp -v doc/doxygen/html/* $(htmldir)/devel/doxygen/ && cd doc/doxygen/latex && make refman.pdf && cd ../../../ && cp doc/doxygen/latex/refman.pdf $(htmldir)/devel/doxygen/$(PACKAGE).pdf
158         -cp -v doc/reference/html/*.html doc/reference/html/*.png doc/reference/html/*.devhelp doc/reference/html/*.css $(htmldir)/reference/
159         #cp -v doc/cyclo/cyclo-$(PACKAGE).html $(htmldir)/cyclo/
160
161 upload-web:
162         cd $(htmldir) && \
163                 cvs commit -m "Update." manual/ reference/ \
164                         doxygen/ devel/ cyclo/
165
166 ASM_SOURCES:= \
167         lib/accelerated/x86/elf/cpuid-x86-64.s \
168         lib/accelerated/x86/elf/cpuid-x86.s \
169         lib/accelerated/x86/elf/appro-aes-gcm-x86-64.s \
170         lib/accelerated/x86/elf/appro-aes-x86-64.s \
171         lib/accelerated/x86/elf/appro-aes-x86.s \
172         lib/accelerated/x86/elf/padlock-x86-64.s \
173         lib/accelerated/x86/elf/padlock-x86.s \
174         lib/accelerated/x86/coff/cpuid-x86-coff.s \
175         lib/accelerated/x86/coff/cpuid-x86-64-coff.s \
176         lib/accelerated/x86/coff/appro-aes-gcm-x86-64-coff.s \
177         lib/accelerated/x86/coff/appro-aes-x86-64-coff.s \
178         lib/accelerated/x86/coff/appro-aes-x86-coff.s \
179         lib/accelerated/x86/coff/padlock-x86-64-coff.s \
180         lib/accelerated/x86/coff/padlock-x86-coff.s \
181         lib/accelerated/x86/macosx/cpuid-x86-64-macosx.s \
182         lib/accelerated/x86/macosx/cpuid-x86-macosx.s \
183         lib/accelerated/x86/macosx/appro-aes-gcm-x86-64-macosx.s \
184         lib/accelerated/x86/macosx/appro-aes-x86-64-macosx.s \
185         lib/accelerated/x86/macosx/appro-aes-x86-macosx.s \
186         lib/accelerated/x86/macosx/padlock-x86-64-macosx.s \
187         lib/accelerated/x86/macosx/padlock-x86-macosx.s
188
189 asm-sources: $(ASM_SOURCES)
190
191 asm-sources-clean:
192         rm -f $(ASM_SOURCES)
193
194 lib/accelerated/x86/elf/cpuid-x86-64.s: devel/perlasm/cpuid-x86_64.pl
195         cat devel/perlasm/license-gnutls.txt > $@
196         perl $< elf >> $@
197         echo "" >> $@
198         echo ".section .note.GNU-stack,\"\",%progbits" >> $@
199
200
201 lib/accelerated/x86/elf/cpuid-x86.s: devel/perlasm/cpuid-x86.pl
202         cat devel/perlasm/license-gnutls.txt > $@
203         perl $< elf >> $@
204         echo "" >> $@
205         echo ".section .note.GNU-stack,\"\",%progbits" >> $@
206
207 lib/accelerated/x86/elf/appro-aes-gcm-x86-64.s: devel/perlasm/ghash-x86_64.pl
208         cat devel/perlasm/license.txt > $@
209         perl $< elf >> $@
210         echo "" >> $@
211         echo ".section .note.GNU-stack,\"\",%progbits" >> $@
212
213 lib/accelerated/x86/elf/appro-aes-x86-64.s: devel/perlasm/aesni-x86_64.pl
214         cat devel/perlasm/license.txt > $@
215         perl $< elf >> $@
216         echo "" >> $@
217         echo ".section .note.GNU-stack,\"\",%progbits" >> $@
218
219 lib/accelerated/x86/elf/appro-aes-x86.s: devel/perlasm/aesni-x86.pl
220         cat devel/perlasm/license.txt > $@
221         perl $< elf >> $@
222         echo "" >> $@
223         echo ".section .note.GNU-stack,\"\",%progbits" >> $@
224
225 lib/accelerated/x86/elf/padlock-x86-64.s: devel/perlasm/e_padlock-x86_64.pl
226         cat devel/perlasm/license.txt > $@
227         perl $< elf >> $@
228         echo "" >> $@
229         echo ".section .note.GNU-stack,\"\",%progbits" >> $@
230
231 lib/accelerated/x86/elf/padlock-x86.s: devel/perlasm/e_padlock-x86.pl
232         cat devel/perlasm/license.txt > $@
233         perl $< elf >> $@
234         echo "" >> $@
235         echo ".section .note.GNU-stack,\"\",%progbits" >> $@
236
237 lib/accelerated/x86/coff/appro-aes-gcm-x86-64-coff.s: devel/perlasm/ghash-x86_64.pl
238         cat devel/perlasm/license.txt > $@
239         perl $< mingw64 >> $@
240
241 lib/accelerated/x86/coff/appro-aes-x86-64-coff.s: devel/perlasm/aesni-x86_64.pl
242         cat devel/perlasm/license.txt > $@
243         perl $< mingw64 >> $@
244
245 lib/accelerated/x86/coff/appro-aes-x86-coff.s: devel/perlasm/aesni-x86.pl
246         cat devel/perlasm/license.txt > $@
247         perl $< coff >> $@
248
249 lib/accelerated/x86/coff/padlock-x86-64-coff.s: devel/perlasm/e_padlock-x86_64.pl
250         cat devel/perlasm/license.txt > $@
251         perl $< mingw64 >> $@
252
253 lib/accelerated/x86/coff/padlock-x86-coff.s: devel/perlasm/e_padlock-x86.pl
254         cat devel/perlasm/license.txt > $@
255         perl $< coff >> $@
256
257 lib/accelerated/x86/coff/cpuid-x86-64-coff.s: devel/perlasm/cpuid-x86_64.pl
258         cat devel/perlasm/license-gnutls.txt > $@
259         perl $< mingw64 >> $@
260
261 lib/accelerated/x86/coff/cpuid-x86-coff.s: devel/perlasm/cpuid-x86.pl
262         cat devel/perlasm/license-gnutls.txt > $@
263         perl $< coff >> $@
264
265 lib/accelerated/x86/macosx/appro-aes-gcm-x86-64-macosx.s: devel/perlasm/ghash-x86_64.pl
266         echo '/*' > $@
267         cat devel/perlasm/license.txt >> $@
268         echo '*/' >> $@
269         perl $< macosx >> $@
270
271 lib/accelerated/x86/macosx/appro-aes-x86-64-macosx.s: devel/perlasm/aesni-x86_64.pl
272         echo '/*' > $@
273         cat devel/perlasm/license.txt >> $@
274         echo '*/' >> $@
275         perl $< macosx >> $@
276
277 lib/accelerated/x86/macosx/appro-aes-x86-macosx.s: devel/perlasm/aesni-x86.pl
278         echo '/*' > $@
279         cat devel/perlasm/license.txt >> $@
280         echo '*/' >> $@
281         perl $< macosx >> $@
282
283 lib/accelerated/x86/macosx/padlock-x86-64-macosx.s: devel/perlasm/e_padlock-x86_64.pl
284         echo '/*' > $@
285         cat devel/perlasm/license.txt >> $@
286         echo '*/' >> $@
287         perl $< macosx >> $@
288
289 lib/accelerated/x86/macosx/padlock-x86-macosx.s: devel/perlasm/e_padlock-x86.pl
290         echo '/*' > $@
291         cat devel/perlasm/license.txt >> $@
292         echo '*/' >> $@
293         perl $< macosx >> $@
294
295 lib/accelerated/x86/macosx/cpuid-x86-64-macosx.s: devel/perlasm/cpuid-x86_64.pl
296         echo '/*' > $@
297         cat devel/perlasm/license.txt >> $@
298         echo '*/' >> $@
299         perl $< macosx >> $@
300
301 lib/accelerated/x86/macosx/cpuid-x86-macosx.s: devel/perlasm/cpuid-x86.pl
302         echo '/*' > $@
303         cat devel/perlasm/license.txt >> $@
304         echo '*/' >> $@
305         perl $< macosx >> $@