mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-05 03:40:18 +00:00
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
This commit is contained in:
14
Makefile
14
Makefile
@@ -512,18 +512,18 @@ asterisk.txt: asterisk.sgml
|
|||||||
docbook2txt asterisk.sgml
|
docbook2txt asterisk.sgml
|
||||||
|
|
||||||
defaults.h: makeopts
|
defaults.h: makeopts
|
||||||
build_tools/make_defaults_h > $@.tmp
|
@build_tools/make_defaults_h > $@.tmp
|
||||||
if cmp -s $@.tmp $@ ; then echo ; else \
|
@if cmp -s $@.tmp $@ ; then echo ; else \
|
||||||
mv $@.tmp $@ ; \
|
mv $@.tmp $@ ; \
|
||||||
fi
|
fi
|
||||||
rm -f $@.tmp
|
@rm -f $@.tmp
|
||||||
|
|
||||||
include/asterisk/version.h:
|
include/asterisk/version.h:
|
||||||
build_tools/make_version_h > $@.tmp
|
@build_tools/make_version_h > $@.tmp
|
||||||
if cmp -s $@.tmp $@ ; then echo; else \
|
@if cmp -s $@.tmp $@ ; then echo; else \
|
||||||
mv $@.tmp $@ ; \
|
mv $@.tmp $@ ; \
|
||||||
fi
|
fi
|
||||||
rm -f $@.tmp
|
@rm -f $@.tmp
|
||||||
|
|
||||||
stdtime/libtime.a:
|
stdtime/libtime.a:
|
||||||
CFLAGS="$(MOD_SUBDIR_CFLAGS) $(ASTCFLAGS)" $(MAKE) -C stdtime libtime.a
|
CFLAGS="$(MOD_SUBDIR_CFLAGS) $(ASTCFLAGS)" $(MAKE) -C stdtime libtime.a
|
||||||
@@ -957,7 +957,7 @@ env:
|
|||||||
# last clean count we had
|
# last clean count we had
|
||||||
|
|
||||||
cleantest:
|
cleantest:
|
||||||
if cmp -s .cleancount .lastclean ; then echo ; else \
|
@if cmp -s .cleancount .lastclean ; then echo ; else \
|
||||||
$(MAKE) clean; cp -f .cleancount .lastclean;\
|
$(MAKE) clean; cp -f .cleancount .lastclean;\
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user