aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlex Auvolat <alex.auvolat@ens.fr>2015-02-13 22:44:10 +0100
committerAlex Auvolat <alex.auvolat@ens.fr>2015-02-13 22:44:10 +0100
commit706c69d40fcc46e7d7f170dab932d3c7fcc7c34e (patch)
tree5248ff8712eced5bc4fdd76e9399654ce5224a37 /Makefile
parent47e6cd42f0744f6c04b8347093f6549339a856c9 (diff)
downloadkogata-706c69d40fcc46e7d7f170dab932d3c7fcc7c34e.tar.gz
kogata-706c69d40fcc46e7d7f170dab932d3c7fcc7c34e.zip
Begin implementation of syscalls.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 246024b..d421104 100644
--- a/Makefile
+++ b/Makefile
@@ -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: