summary refs log tree commit diff homepage
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2016-12-02 04:58:57 -0500
committerJune McEnroe <programble@gmail.com>2016-12-02 04:58:57 -0500
commita1010618a24474e4c8253d2fc1df300474bac609 (patch)
treee08b59b1e842f2bd948626c87624cee71c2d2e7f /Makefile
parentRewrite day 1 solution (diff)
downloadaoc-a1010618a24474e4c8253d2fc1df300474bac609.tar.gz
aoc-a1010618a24474e4c8253d2fc1df300474bac609.zip
Add 32-bit hex formatting
Diffstat (limited to '')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index df4adfd..7f63807 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ all: $(BINS)
 %: %.o
 	ld -o $@ $<
 
-%.o: %.asm sys.asm
+%.o: %.asm sys.asm lib.asm
 	nasm -f elf64 -o $@ $<
 
 clean: