Skip to content
Snippets Groups Projects
Commit a1aefcd0 authored by Russell Bryant's avatar Russell Bryant
Browse files

suppress the output from generating defaults.h and versions.h, as well as

checking the cleancount


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@26492 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 04ecb29d
Branches
Tags
No related merge requests found
......@@ -512,18 +512,18 @@ asterisk.txt: asterisk.sgml
docbook2txt asterisk.sgml
defaults.h: makeopts
build_tools/make_defaults_h > $@.tmp
if cmp -s $@.tmp $@ ; then echo ; else \
@build_tools/make_defaults_h > $@.tmp
@if cmp -s $@.tmp $@ ; then echo ; else \
mv $@.tmp $@ ; \
fi
rm -f $@.tmp
@rm -f $@.tmp
include/asterisk/version.h:
build_tools/make_version_h > $@.tmp
if cmp -s $@.tmp $@ ; then echo; else \
@build_tools/make_version_h > $@.tmp
@if cmp -s $@.tmp $@ ; then echo; else \
mv $@.tmp $@ ; \
fi
rm -f $@.tmp
@rm -f $@.tmp
stdtime/libtime.a:
CFLAGS="$(MOD_SUBDIR_CFLAGS) $(ASTCFLAGS)" $(MAKE) -C stdtime libtime.a
......@@ -957,7 +957,7 @@ env:
# last clean count we had
cleantest:
if cmp -s .cleancount .lastclean ; then echo ; else \
@if cmp -s .cleancount .lastclean ; then echo ; else \
$(MAKE) clean; cp -f .cleancount .lastclean;\
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment