mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
17 lines
301 B
Makefile
17 lines
301 B
Makefile
SFX = 5.1
|
|
PROJNAME = lua$(SFX)
|
|
APPNAME = bin2c$(SFX)
|
|
APPTYPE = console
|
|
OPT = Yes
|
|
USE_NODEPEND = Yes
|
|
NO_SCRIPTS = Yes
|
|
|
|
SRC = ../etc/bin2c.c
|
|
|
|
ifneq ($(findstring Win, $(TEC_SYSNAME)), )
|
|
SRC += lua_simple.rc
|
|
else
|
|
ifneq ($(findstring cygw, $(TEC_UNAME)), )
|
|
SRC += lua_simple.rc
|
|
endif
|
|
endif
|