diff --git a/.gitignore b/.gitignore index 4508f59..82e66af 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/GNUmakefile b/GNUmakefile index f0c83c3..af1d450 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -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"; \