mirror of
https://github.com/martanne/bitpixie
synced 2026-06-08 15:44:32 +00:00
487efc201b
Given a raw memory dump, search for a VMK and optionally store it in a file.
15 lines
278 B
Makefile
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
|