summaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorGentoo <installgentoo@endianness.com>2020-08-12 19:45:06 +1000
committerGentoo <installgentoo@endianness.com>2020-08-12 19:45:06 +1000
commit24d5fab3d7ff1f0d3ba6cae50935e964ee479875 (patch)
tree8c78f322c53bc51796c17a073f896e0cea13a968 /makefile
downloadyes-24d5fab3d7ff1f0d3ba6cae50935e964ee479875.tar.gz
yes-24d5fab3d7ff1f0d3ba6cae50935e964ee479875.tar.bz2
yes-24d5fab3d7ff1f0d3ba6cae50935e964ee479875.zip
initial commit
Diffstat (limited to 'makefile')
-rw-r--r--makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..8b42a58
--- /dev/null
+++ b/makefile
@@ -0,0 +1,9 @@
+yes: yes.o
+ ld -m elf_x86_64 -o yes yes.o
+yes.o: yes.asm
+ nasm -f elf64 yes.asm
+clean:
+ rm *.o
+ rm yes
+run: yes
+ ./yes