diff options
| author | cflem <carson.fl3ming@gmail.com> | 2015-09-05 23:12:02 -0700 |
|---|---|---|
| committer | cflem <carson.fl3ming@gmail.com> | 2015-09-05 23:12:02 -0700 |
| commit | 03524b2d04c1a2535e425b89154b9941c662f0fe (patch) | |
| tree | a8f8f8511a5776d33c4684be919729e5dd3e26ad | |
| parent | 1ef561585ff4ff52ad445af27f5e1bdca2b9899a (diff) | |
| download | dbsh-03524b2d04c1a2535e425b89154b9941c662f0fe.tar.gz | |
Added makefileoriginal
| -rw-r--r-- | makefile | 5 |
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 |
