|
|
|
#*********************************************************************************************************
|
|
|
|
#
|
|
|
|
# �й�������Դ��֯
|
|
|
|
#
|
|
|
|
# Ƕ��ʽʵʱ����ϵͳ
|
|
|
|
#
|
|
|
|
# SylixOS(TM) LW : long wing
|
|
|
|
#
|
|
|
|
# Copyright All Rights Reserved
|
|
|
|
#
|
|
|
|
#--------------�ļ���Ϣ--------------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# �� �� ��: Makefile
|
|
|
|
#
|
|
|
|
# �� �� ��: RealEvo-IDE
|
|
|
|
#
|
|
|
|
# �ļ���������: 2016 �� 10 �� 08 ��
|
|
|
|
#
|
|
|
|
# �� ��: ���ļ��� RealEvo-IDE ���ɣ��������� Makefile ���ܣ������ֶ���
|
|
|
|
#*********************************************************************************************************
|
|
|
|
|
|
|
|
#*********************************************************************************************************
|
|
|
|
# Include config.mk
|
|
|
|
#*********************************************************************************************************
|
|
|
|
CONFIG_MK_EXIST = $(shell if [ -f ../config.mk ]; then echo exist; else echo notexist; fi;)
|
|
|
|
ifeq ($(CONFIG_MK_EXIST), exist)
|
|
|
|
include ../config.mk
|
|
|
|
else
|
|
|
|
CONFIG_MK_EXIST = $(shell if [ -f config.mk ]; then echo exist; else echo notexist; fi;)
|
|
|
|
ifeq ($(CONFIG_MK_EXIST), exist)
|
|
|
|
include config.mk
|
|
|
|
else
|
|
|
|
CONFIG_MK_EXIST =
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
#*********************************************************************************************************
|
|
|
|
# Include header.mk
|
|
|
|
#*********************************************************************************************************
|
|
|
|
EMPTY =
|
|
|
|
SPACE = $(EMPTY) $(EMPTY)
|
|
|
|
MKTEMP = $(subst $(SPACE),\ ,$(SYLIXOS_BASE_PATH))/libsylixos/SylixOS/mktemp
|
|
|
|
|
|
|
|
include $(MKTEMP)/header.mk
|
|
|
|
|
|
|
|
#*********************************************************************************************************
|
|
|
|
# LUA Version select
|
|
|
|
#*********************************************************************************************************
|
|
|
|
LUA_VER = 5.2
|
|
|
|
|
|
|
|
#*********************************************************************************************************
|
|
|
|
# Include targets makefiles
|
|
|
|
#*********************************************************************************************************
|
|
|
|
include liblua.mk
|
|
|
|
include luac.mk
|
|
|
|
include lua.mk
|
|
|
|
|
|
|
|
#*********************************************************************************************************
|
|
|
|
# Include end.mk
|
|
|
|
#*********************************************************************************************************
|
|
|
|
include $(END_MK)
|
|
|
|
|
|
|
|
#*********************************************************************************************************
|
|
|
|
# End
|
|
|
|
#*********************************************************************************************************
|