Silence the Makefile tests

The Makefile tests do not need to be printed all the time.
Add some more files to .gitignore

Signed-off-by: Karsten Keil <kkeil@linux-pingi.de>
This commit is contained in:
Karsten Keil 2012-08-03 09:11:10 +02:00
parent debd47d018
commit 1db3255c87
2 changed files with 6 additions and 5 deletions

3
.gitignore vendored
View File

@ -26,6 +26,7 @@
test_file.in
test_file.out
45-misdn.rules
autom4te.cache
ChangeLog
config.log
@ -35,7 +36,7 @@ Makefile.in
configure
ltmain.sh
m4
autom4te.cache
aclocal.m4
depcomp
missing
install-sh

View File

@ -1,18 +1,18 @@
all:
if test ! -f configure ; then \
@if test ! -f configure ; then \
$(MAKE) configure ; \
fi
if test ! -f Makefile.in ; then \
@if test ! -f Makefile.in ; then \
$(MAKE) Makefile.in ; \
fi
if test -f Makefile ; then \
@if test -f Makefile ; then \
$(MAKE) -f Makefile $@; \
else \
echo "Please run ./configure"; \
fi
%:
if test -f Makefile ; then \
@if test -f Makefile ; then \
$(MAKE) -f Makefile $@; \
else \
echo "Please run ./configure"; \