summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGentoo <installgentoo@endianness.com>2022-07-23 00:26:31 +1000
committerGentoo <installgentoo@endianness.com>2022-07-23 00:26:31 +1000
commit3a1be8b11088b3171d919ddc1aaeeb3c10e7e98b (patch)
tree97fc01c6076393e5e0a9a80b4eaae3ffdfdb22be /Makefile
parent02c8a5688feefb2226f9b02e2ec241d569d5a362 (diff)
downloadcat-asm-3a1be8b11088b3171d919ddc1aaeeb3c10e7e98b.tar.gz
cat-asm-3a1be8b11088b3171d919ddc1aaeeb3c10e7e98b.tar.bz2
cat-asm-3a1be8b11088b3171d919ddc1aaeeb3c10e7e98b.zip
clarified licenseHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..061929f
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,6 @@
+cat: cat.o
+ ld -m elf_x86_64 -o cat cat.o
+cat.o: cat.asm
+ nasm -f elf64 cat.asm
+clean:
+ rm *.o ; rm cat