summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlexis211 <alexis211@gmail.com>2010-08-10 17:14:38 +0200
committerAlexis211 <alexis211@gmail.com>2010-08-10 17:14:38 +0200
commit0ec0ca40a4fedfe97c49903a329b2a9ad2e22d03 (patch)
treeb9033e69392dd1a7ffe0173ef8db561ecce9b21b /Makefile
parentad27a90fa788a81253b5f2ad621d82ae574ae65d (diff)
downloadTCE-0ec0ca40a4fedfe97c49903a329b2a9ad2e22d03.tar.gz
TCE-0ec0ca40a4fedfe97c49903a329b2a9ad2e22d03.zip
Using a cross-compiler. Better makefile system.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 9 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 9425023..6a014ec 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,8 @@ Projects = kernel library modules/manager modules/test
Floppy = Grapes.fl.img
all:
- for p in $(Projects); do \
+ @for p in $(Projects); do \
+ echo ""; echo "----------------------"; \
echo "=> Building $$p"; \
make -C src/$$p -s; \
done
@@ -13,21 +14,23 @@ all:
rebuild: mrproper all
clean:
- for p in $(Projects); do \
- echo "=> Building $$p"; \
+ @for p in $(Projects); do \
+ echo ""; echo "----------------------"; \
+ echo "=> Cleaning $$p"; \
make -C src/$$p clean -s; \
done
mrproper:
- for p in $(Projects); do \
- echo "=> Building $$p"; \
+ @for p in $(Projects); do \
+ echo ""; echo "----------------------"; \
+ echo "=> Cleaning $$p"; \
make -C src/$$p mrproper -s; \
done
commit: mrproper
git add .
git commit -a; exit 0
- git push github
+ git push origin
floppy:
mkdir mnt; exit 0