summaryrefslogtreecommitdiff
path: root/exec_cmd/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'exec_cmd/makefile')
-rw-r--r--exec_cmd/makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/exec_cmd/makefile b/exec_cmd/makefile
new file mode 100644
index 0000000..676ee34
--- /dev/null
+++ b/exec_cmd/makefile
@@ -0,0 +1,5 @@
+make:
+ nasm shell.asm -felf32 -o shell.o
+ ld -m elf_i386 shell.o -o shell -s
+ chmod u+s shell
+