init commit
This commit is contained in:
19
Makefile
Normal file
19
Makefile
Normal file
@@ -0,0 +1,19 @@
|
||||
# 编译器设置
|
||||
export CC=gcc
|
||||
export CXX=g++
|
||||
export AS=gcc
|
||||
|
||||
# 编译器标志
|
||||
CFLAGS=-Wall -g
|
||||
CXXFLAGS=-Wall -g
|
||||
ASFLAGS=-c
|
||||
|
||||
.PHONY: otapackage clean
|
||||
|
||||
# 编译结果
|
||||
otapackage:
|
||||
make -e -f bionic.mk
|
||||
|
||||
# 清理编译生成的文件
|
||||
clean:
|
||||
rm -rf out/
|
||||
Reference in New Issue
Block a user