From 4143fa31a9dbf20916fbaccb9be9a96649834519 Mon Sep 17 00:00:00 2001 From: H3XploR <73852348+H3XploR@users.noreply.github.com> Date: Thu, 4 Jun 2026 21:41:52 +0200 Subject: [PATCH] added windows compilation version --- makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makefile b/makefile index d4d01bb..02439b6 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,7 @@ -NAME = analyze +NAME = analyze.exe $(NAME): analyze.o - ld $^ -o $@ + link.exe $^ /OUT:$@ /ENTRY:_start /SUBSYSTEM:console analyze.o: start.s - nasm -f elf64 start.s -o $@ + nasm -f win64 start.s -o $@