~smoser/euca2ools/fix-make-clean

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Scott Moser
  • Date: 2011-12-14 17:33:04 UTC
  • Revision ID: smoser@ubuntu.com-20111214173304-gribuqwex1csi2p4
Makefile: make 'make clean' not exit failure

In the re-organizing of the euca2ools directory structure, make clean
started exiting failure.  This is used by debian build tools, so it would
be nice if it did not exit failure.

This simply makes it succeed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
        @if [ -d $(BASH_COMPLETION) ]; then install -o root -m 644  $(UTILDIR)/* $(BASH_COMPLETION); fi
63
63
 
64
64
distclean clean:
65
 
        @for subdir in $(SUBDIRS); do \
66
 
                (cd $$subdir && $(MAKE) $@) || exit $$? ; done
 
65
        echo "Nothing to do for clean"
67
66
 
68
67
uninstall:
69
68
        @for x in $(BINLIST); do \