diff options
author | Sascha Schumann <sas@php.net> | 1999-12-24 23:29:39 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-12-24 23:29:39 +0000 |
commit | e3ff6b561d53353e8853bb4fca8d9a22c8466a69 (patch) | |
tree | c42f6c71980bc08222bbe07c3a467d7a66b5a773 | |
parent | 9120a4231cd6aa02c6a07ce033444a9119ade3da (diff) | |
download | php-git-e3ff6b561d53353e8853bb4fca8d9a22c8466a69.tar.gz |
Update .cvsignore, make build.mk more verbose
-rw-r--r-- | build.mk | 2 | ||||
-rw-r--r-- | build2.mk | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -44,6 +44,6 @@ dist: cvsclean: @for i in `find . -follow -name .cvsignore`; do \ - (cd `dirname $$i` && (rm -f `cat .cvsignore` *.o *.a; rm -rf .libs .deps)); \ + (cd `dirname $$i` 2>/dev/null && (rm -f `cat .cvsignore` *.o *.a; rm -rf .libs .deps) || true); \ done @rm -f $(SUBDIRS) 2>/dev/null || true @@ -47,8 +47,10 @@ aclocal.m4: configure.in acinclude.m4 $(config_h_in): configure.in acconfig.h # explicitly remove target since autoheader does not seem to work # correctly otherwise (timestamps are not updated) + @echo rebuilding $@ @rm -f $@ autoheader configure: aclocal.m4 configure.in $(config_m4_files) + @echo rebuilding $@ autoconf |