diff options
author | Aleksey Veresov <aleksey@veresov.pro> | 2020-11-06 20:21:56 +0300 |
---|---|---|
committer | Aleksey Veresov <aleksey@veresov.pro> | 2020-11-06 20:21:56 +0300 |
commit | aaf2b78976f7740dbef32e0e538f1a1edd93456b (patch) | |
tree | acc0d15f90c8645572a851a910360fd3da67d5d8 /Makefile | |
download | bismuth-aaf2b78976f7740dbef32e0e538f1a1edd93456b.tar bismuth-aaf2b78976f7740dbef32e0e538f1a1edd93456b.tar.xz bismuth-aaf2b78976f7740dbef32e0e538f1a1edd93456b.zip |
It's alive.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d2167c6 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +bismuth: bismuth.asm + nasm -g -f elf32 bismuth.asm + ld -m elf_i386 bismuth.o -o bismuth + +.PHONY: clean +clean: + rm -f bismuth.o bismuth |