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