-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
59 lines (53 loc) · 2.37 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#*********************************************************************************************************
#
# 北京翼辉信息技术有限公司
#
# 微型安全实时操作系统
#
# MS-RTOS(TM)
#
# Copyright All Rights Reserved
#
#--------------文件信息--------------------------------------------------------------------------------
#
# 文 件 名: Makefile
#
# 创 建 人: IoT Studio
#
# 文件创建日期: 2016 年 10 月 08 日
#
# 描 述: 本文件由 IoT Studio 生成,用于配置 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),\ ,$(MSRTOS_BASE_PATH))/libmsrtos/src/mktemp
include $(MKTEMP)/header.mk
#*********************************************************************************************************
# Include targets makefiles
#*********************************************************************************************************
include libu8g2.mk
include u8g2_example.mk
#*********************************************************************************************************
# Include end.mk
#*********************************************************************************************************
include $(END_MK)
#*********************************************************************************************************
# End
#*********************************************************************************************************