summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcflem <carson.fl3ming@gmail.com>2015-09-05 23:12:02 -0700
committercflem <carson.fl3ming@gmail.com>2015-09-05 23:12:02 -0700
commit03524b2d04c1a2535e425b89154b9941c662f0fe (patch)
treea8f8f8511a5776d33c4684be919729e5dd3e26ad
parent1ef561585ff4ff52ad445af27f5e1bdca2b9899a (diff)
downloaddbsh-03524b2d04c1a2535e425b89154b9941c662f0fe.tar.gz
Added makefileoriginal
-rw-r--r--makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..04a37e8
--- /dev/null
+++ b/makefile
@@ -0,0 +1,5 @@
+all:
+ nasm sh.s -f elf64 -o sh.o
+ ld sh.o -o sh
+clean:
+ rm -f sh.o sh