diff options
author | Alex Auvolat <alex.auvolat@ens.fr> | 2015-02-13 22:44:10 +0100 |
---|---|---|
committer | Alex Auvolat <alex.auvolat@ens.fr> | 2015-02-13 22:44:10 +0100 |
commit | 706c69d40fcc46e7d7f170dab932d3c7fcc7c34e (patch) | |
tree | 5248ff8712eced5bc4fdd76e9399654ce5224a37 /Makefile | |
parent | 47e6cd42f0744f6c04b8347093f6549339a856c9 (diff) | |
download | kogata-706c69d40fcc46e7d7f170dab932d3c7fcc7c34e.tar.gz kogata-706c69d40fcc46e7d7f170dab932d3c7fcc7c34e.zip |
Begin implementation of syscalls.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,12 +2,12 @@ DIRS = src/common/libkogata src/common/libc src/common/libalgo src/kernel src/li all: for dir in $(DIRS); do \ - $(MAKE) -C $$dir; \ + $(MAKE) -C $$dir || exit 1; \ done rebuild: for dir in $(DIRS); do \ - $(MAKE) -C $$dir rebuild; \ + $(MAKE) -C $$dir rebuild || exit 1; \ done clean: |