Changeset 587

Show
Ignore:
Timestamp:
08/19/08 15:55:59
Author:
ben
Message:

Exit on errors. At least often enough that Rachel can fix the rest.
--Thiline, and those below, will be ignored--

M src/Makefile.template
M Makefile

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openpgpsdk/trunk/Makefile

    r579 r587  
    1111 
    1212default: 
    13         @set -e; for d in $(SUBDIRS); do \ 
    14         $(MAKE) -w -S -C $$d; \ 
     13        set -e; for d in $(SUBDIRS); do \ 
     14        $(MAKE) -w -C $$d || exit 1; \ 
    1515        done 
    1616 
  • openpgpsdk/trunk/src/Makefile.template

    r579 r587  
    33 
    44default: Makefile 
    5         @set -e; for d in $(SUBDIRS); do \ 
    6         (cd $$d; echo "+++ make in $$d"; $(MAKE); echo "--- $$d"); \ 
     5        set -e; for d in $(SUBDIRS); do \ 
     6        (cd $$d; echo "+++ make in $$d"; $(MAKE) || exit 1; echo "--- $$d") || exit 1; \ 
    77        done 
    88