diff options
author | Dan Nicholson <[email protected]> | 2008-05-07 11:35:23 -0700 |
---|---|---|
committer | Dan Nicholson <[email protected]> | 2008-05-07 11:35:23 -0700 |
commit | a6464b3cb08b86d5fc537a4907849546a63ae4da (patch) | |
tree | e3f780df1222827ca5a622c3f5f76b240f132ad6 /progs/Makefile | |
parent | df8134c3cf53a2e4363f27e9a1266e685ca7f0e7 (diff) |
Never fail `make clean'
Mostly some pedantic changes such that `make clean' always ignores
errors. Also changed the top clean target to do the `touch
configs/current' dance instead of realclean.
Diffstat (limited to 'progs/Makefile')
-rw-r--r-- | progs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/Makefile b/progs/Makefile index 5e705efa7ee..c99f4eebcc1 100644 --- a/progs/Makefile +++ b/progs/Makefile @@ -25,7 +25,7 @@ subdirs: install: clean: - @for dir in $(SUBDIRS) tests ; do \ + -@for dir in $(SUBDIRS) tests ; do \ if [ -d $$dir ] ; then \ (cd $$dir && $(MAKE) clean) ; \ fi \ |