Files
ASM_CODE_ANALYSE/makefile
T
H3XploR df10b52813 update
2026-06-05 03:17:43 +02:00

8 lines
165 B
Makefile

NAME = analyze.exe
$(NAME): analyze.o
link.exe $^ kernel32.lib psapi.lib /OUT:$@ /ENTRY:_start /SUBSYSTEM:console
analyze.o: start.s
nasm -f win64 start.s -o $@