LingYun Studio embeded system framwork software, such as thirdparty build shell and lingyun library
guowenxue
2021-05-02 e6d003042de72cf12e36190b5c8a3a505d923863
1
2
3
4
5
6
7
8
9
10
11
12
13
14
 
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