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:41:33 +0900 |
commit | 0d2159372c361ffd1f5fa9aeb9d915d26d9a4262 (patch) | |
tree | 0e745f65b8233970081a17b7981c0ca0a2cb1342 /Makefile.in | |
parent | 2cbeae87feea188272057dd310fa2d4ee535b80a (diff) | |
download | klamav-0d2159372c361ffd1f5fa9aeb9d915d26d9a4262.tar.gz klamav-0d2159372c361ffd1f5fa9aeb9d915d26d9a4262.zip |
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit f8dcdf5cb308c5e8e82162b596b0900773394d95)
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Makefile.in b/Makefile.in index 3c47934..b41941f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -944,21 +944,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 |