guowenxue
2021-08-08 0d56a56ed2b3dcbc3ebc4e6567167b0ff39299c9
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