diff options
author | June McEnroe <june@causal.agency> | 2016-12-02 04:58:57 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2016-12-02 04:58:57 -0500 |
commit | 5c3858a91442a331866049802fa57381e5cbb1ee (patch) | |
tree | e08b59b1e842f2bd948626c87624cee71c2d2e7f /Makefile | |
parent | Rewrite day 1 solution (diff) | |
download | aoc-5c3858a91442a331866049802fa57381e5cbb1ee.tar.gz aoc-5c3858a91442a331866049802fa57381e5cbb1ee.zip |
Add 32-bit hex formatting
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
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: |