Files
Marc André Tanner 487efc201b Implement generic VMK search tool
Given a raw memory dump, search for a VMK and optionally store it
in a file.
2025-02-26 10:42:14 +01:00

15 lines
278 B
Makefile

all: posix windows
posix: search-vmk
windows: search-vmk.exe
search-vmk: search-vmk-posix.c
cc -Wall -Wextra search-vmk-posix.c -o $@
search-vmk.exe: search-vmk-win32.c
x86_64-w64-mingw32-gcc -Wall -Wextra search-vmk-win32.c -o $@
clean:
rm -f search-vmk search-vmk.exe