diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-03-19 09:40:59 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-03-19 09:40:59 +0900 |
commit | f8dcdf5cb308c5e8e82162b596b0900773394d95 (patch) | |
tree | 947682c53289aad7ca310bcb5994e4830b8fc09f /doc | |
parent | 9eea68786bd0e101ccc2d24fcb02a2f0c26ef08b (diff) | |
download | klamav-f8dcdf5cb308c5e8e82162b596b0900773394d95.tar.gz klamav-f8dcdf5cb308c5e8e82162b596b0900773394d95.zip |
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.in | 16 | ||||
-rw-r--r-- | doc/en/Makefile.in | 16 |
2 files changed, 16 insertions, 16 deletions
diff --git a/doc/Makefile.in b/doc/Makefile.in index f587dc9..907ea3e 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -683,21 +683,21 @@ force-reedit: #>+ 21 clean-bcheck: - rm -f *.bchecktest.cc *.bchecktest.cc.class a.out + rm -f *.bchecktest.cpp *.bchecktest.cpp.class a.out bcheck: bcheck-recursive bcheck-am: @for i in ; do \ - if test $(srcdir)/$$i -nt $$i.bchecktest.cc; then \ - echo "int main() {return 0;}" > $$i.bchecktest.cc ; \ - echo "#include \"$$i\"" >> $$i.bchecktest.cc ; \ + if test $(srcdir)/$$i -nt $$i.bchecktest.cpp; then \ + echo "int main() {return 0;}" > $$i.bchecktest.cpp ; \ + echo "#include \"$$i\"" >> $$i.bchecktest.cpp ; \ echo "$$i"; \ - if ! $(CXX) $(DEFS) -I. -I$(srcdir) -I$(top_builddir) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(KDE_CXXFLAGS) --dump-class-hierarchy -c $$i.bchecktest.cc; then \ - rm -f $$i.bchecktest.cc; exit 1; \ + if ! $(CXX) $(DEFS) -I. -I$(srcdir) -I$(top_builddir) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(KDE_CXXFLAGS) --dump-class-hierarchy -c $$i.bchecktest.cpp; then \ + rm -f $$i.bchecktest.cpp; exit 1; \ fi ; \ - echo "" >> $$i.bchecktest.cc.class; \ - perl $(top_srcdir)/admin/bcheck.pl $$i.bchecktest.cc.class || { rm -f $$i.bchecktest.cc; exit 1; }; \ + echo "" >> $$i.bchecktest.cpp.class; \ + perl $(top_srcdir)/admin/bcheck.pl $$i.bchecktest.cpp.class || { rm -f $$i.bchecktest.cpp; exit 1; }; \ rm -f a.out; \ fi ; \ done diff --git a/doc/en/Makefile.in b/doc/en/Makefile.in index a856b75..be69a3e 100644 --- a/doc/en/Makefile.in +++ b/doc/en/Makefile.in @@ -561,21 +561,21 @@ force-reedit: #>+ 21 clean-bcheck: - rm -f *.bchecktest.cc *.bchecktest.cc.class a.out + rm -f *.bchecktest.cpp *.bchecktest.cpp.class a.out bcheck: bcheck-am bcheck-am: @for i in ; do \ - if test $(srcdir)/$$i -nt $$i.bchecktest.cc; then \ - echo "int main() {return 0;}" > $$i.bchecktest.cc ; \ - echo "#include \"$$i\"" >> $$i.bchecktest.cc ; \ + if test $(srcdir)/$$i -nt $$i.bchecktest.cpp; then \ + echo "int main() {return 0;}" > $$i.bchecktest.cpp ; \ + echo "#include \"$$i\"" >> $$i.bchecktest.cpp ; \ echo "$$i"; \ - if ! $(CXX) $(DEFS) -I. -I$(srcdir) -I$(top_builddir) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(KDE_CXXFLAGS) --dump-class-hierarchy -c $$i.bchecktest.cc; then \ - rm -f $$i.bchecktest.cc; exit 1; \ + if ! $(CXX) $(DEFS) -I. -I$(srcdir) -I$(top_builddir) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(KDE_CXXFLAGS) --dump-class-hierarchy -c $$i.bchecktest.cpp; then \ + rm -f $$i.bchecktest.cpp; exit 1; \ fi ; \ - echo "" >> $$i.bchecktest.cc.class; \ - perl $(top_srcdir)/admin/bcheck.pl $$i.bchecktest.cc.class || { rm -f $$i.bchecktest.cc; exit 1; }; \ + echo "" >> $$i.bchecktest.cpp.class; \ + perl $(top_srcdir)/admin/bcheck.pl $$i.bchecktest.cpp.class || { rm -f $$i.bchecktest.cpp; exit 1; }; \ rm -f a.out; \ fi ; \ done |