diff options
author | Alexis211 <alexis211@gmail.com> | 2010-08-10 17:14:38 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2010-08-10 17:14:38 +0200 |
commit | 0ec0ca40a4fedfe97c49903a329b2a9ad2e22d03 (patch) | |
tree | b9033e69392dd1a7ffe0173ef8db561ecce9b21b /Makefile | |
parent | ad27a90fa788a81253b5f2ad621d82ae574ae65d (diff) | |
download | TCE-0ec0ca40a4fedfe97c49903a329b2a9ad2e22d03.tar.gz TCE-0ec0ca40a4fedfe97c49903a329b2a9ad2e22d03.zip |
Using a cross-compiler. Better makefile system.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -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 |