diff options
author | Alexis211 <alexis211@gmail.com> | 2010-01-25 18:40:00 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2010-01-25 18:40:00 +0100 |
commit | 7f72a900c12ba62db12df0872cb66f79a27aa9d9 (patch) | |
tree | 675c83fddae718fc0c1281be5215641fc860b75b | |
parent | 4ae83c83f34759172e9c575c8ac875011bfaff2d (diff) | |
download | TCE-7f72a900c12ba62db12df0872cb66f79a27aa9d9.tar.gz TCE-7f72a900c12ba62db12df0872cb66f79a27aa9d9.zip |
Minor changes
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | src/stem/Makefile | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5761abc --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.o @@ -29,7 +29,6 @@ commit: mrproper git add . git commit -a; exit 0 git push github - git push home floppy: mkdir mnt; exit 0 diff --git a/src/stem/Makefile b/src/stem/Makefile index 94e2000..d7af245 100644 --- a/src/stem/Makefile +++ b/src/stem/Makefile @@ -24,7 +24,7 @@ clean: rm $(OBJECTS) || exit 0 mrproper: clean - rm $(OUT) + rm $(OUT) || exit 0 %.o: %.asm echo "* Compiling $<..." |