summary refs log tree commit diff homepage
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 0 insertions, 14 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 7f63807..0000000
--- a/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-BINS = day01
-
-all: $(BINS)
-
-%: %.o
-	ld -o $@ $<
-
-%.o: %.asm sys.asm lib.asm
-	nasm -f elf64 -o $@ $<
-
-clean:
-	rm -f $(BINS)
-
-.PHONY: clean