summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis211 <alexis211@gmail.com>2010-01-25 18:40:00 +0100
committerAlexis211 <alexis211@gmail.com>2010-01-25 18:40:00 +0100
commit7f72a900c12ba62db12df0872cb66f79a27aa9d9 (patch)
tree675c83fddae718fc0c1281be5215641fc860b75b
parent4ae83c83f34759172e9c575c8ac875011bfaff2d (diff)
downloadTCE-7f72a900c12ba62db12df0872cb66f79a27aa9d9.tar.gz
TCE-7f72a900c12ba62db12df0872cb66f79a27aa9d9.zip
Minor changes
-rw-r--r--.gitignore1
-rw-r--r--Makefile1
-rw-r--r--src/stem/Makefile2
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
diff --git a/Makefile b/Makefile
index 94f5ff7..0c55025 100644
--- a/Makefile
+++ b/Makefile
@@ -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 $<..."