summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 $<..."