dashboard
repositories
filestore
activity
search
login
main
/
framwork
LingYun Studio embeded system framwork software, such as thirdparty build shell and lingyun library
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Merge branch 'master' of ssh://master.iot-yun.club:2280/framwork
guowenxue
2022-04-14
4c2677100744cfa66d55d5f551523231799a781b
[framwork.git]
/
booster
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
PWD=$(shell pwd )
LIBNAME=$(shell basename ${PWD} )
TOPDIR=$(shell dirname ${PWD} )
all: clean
@rm -f *.o
@${CROSSTOOL}gcc ${CFLAGS} -I${TOPDIR} -c *.c
${CROSSTOOL}ar -rcs lib${LIBNAME}.a *.o
clean:
@rm -f *.o
@rm -f *.a
distclean:
@make clean
@rm -f cscope.* tags