aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6a682f1..457489d 100644
--- a/Makefile
+++ b/Makefile
@@ -30,8 +30,8 @@ $(TARGET): $(OBJS)
$(CC) $(CFLAGS) -MMD -MF $(@:.o=.d) -MT $@ -c -o $@ $<
%.o: %.asm
- yasm -f elf -m amd64 -M $< > $(@:.o=.d)
- yasm -f elf -m amd64 -o $@ $<
+ nasm -f elf64 -M $< > $(@:.o=.d)
+ nasm -f elf64 -o $@ $<
clean:
-rm -f *.o *.d *.pyc $(TARGET)