-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathmakefile
36 lines (30 loc) · 994 Bytes
/
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
#/*
#*********************************************************************************************************
#* MELIS
#* the Easy Portable/Player Develop Kits
#* makefile Module
#*
#* (c) Copyright 2006-2010, kevin.z China
#* All Rights Reserved
#*
#* File : makefile
#* By : kevin.z
#* Version : v1.0
#* Date : 2010-9-3 9:39
#* Descript:
#* Update : date auther ver notes
#*********************************************************************************************************
#*/
#生成输出目标文件
all:
make -C eLibs
make -C eMod
make -C livedesk
#生产烧录文件
image:
cd ./workspace/suniv/beetles && ./image.bat
# 删除生成的中间文件
clean:
make -C eLibs clean
make -C eMod clean
make -C livedesk clean