diff options
-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 $<..." |