mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
14 lines
216 B
Makefile
Executable file
14 lines
216 B
Makefile
Executable file
CC = gcc
|
|
LD = ld
|
|
|
|
all:
|
|
@${CC} parsevmloadermap.c -o parsevmloadermap
|
|
@echo "parsevmloadermap created"
|
|
|
|
clean:
|
|
@rm -f *.o
|
|
@rm -f *.bin
|
|
@rm -f *.map
|
|
@rm -f parsevmloadermap
|
|
@echo "parsevmloadermap cleaned"
|
|
|