iup-stack/iup/srclua5/iupcd.mak

66 lines
1017 B
Makefile
Executable File

PROJNAME = iup
LIBNAME = iupluacd
IUP := ..
OPT = YES
# To not link with the Lua dynamic library in UNIX
NO_LUALINK = Yes
# To use a subfolder with the Lua version for binaries
LUAMOD_DIR = Yes
USE_CD = YES
USE_IUPLUA = Yes
USE_CDLUA = YES
USE_IUP3 = YES
DEPENDDIR = dep
INCLUDES = ../include
LDIR = ../lib/$(TEC_UNAME)
DEFINES = CD_NO_OLD_INTERFACE
SRC = iuplua_cd.c
DEF_FILE = iupluacd.def
ifdef USE_LUA_VERSION
USE_LUA51:=
USE_LUA52:=
USE_LUA53:=
USE_LUA54:=
ifeq ($(USE_LUA_VERSION), 54)
USE_LUA54:=Yes
endif
ifeq ($(USE_LUA_VERSION), 53)
USE_LUA53:=Yes
endif
ifeq ($(USE_LUA_VERSION), 52)
USE_LUA52:=Yes
endif
ifeq ($(USE_LUA_VERSION), 51)
USE_LUA51:=Yes
endif
endif
ifdef USE_LUA54
LUASFX = 54
else
ifdef USE_LUA53
LUASFX = 53
else
ifdef USE_LUA52
LUASFX = 52
else
USE_LUA51 = Yes
LUASFX = 51
endif
endif
endif
LIBNAME := $(LIBNAME)$(LUASFX)
LIBS = iuplua$(LUASFX)
ifneq ($(findstring MacOS, $(TEC_UNAME)), )
USE_IUPLUA:=
LIBS:=
USE_CDLUA:=
endif