dashboard
repositories
filestore
activity
search
login
main
/
raspberrypi
RaspberryPI project
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
update mqttd makefile
guowenxue
2019-06-24
b7d4cc615c3281263f4f4735a0f7fd21589250bd
[raspberrypi.git]
/
mqttd
/
hal
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
PWD=$(shell pwd )
LIBNAME=$(shell basename ${PWD} )
all: clean
@rm -f *.o
${CROSS_COMPILE}gcc -c *.c
${CROSS_COMPILE}ar -rcs lib${LIBNAME}.a *.o
clean:
@rm -f *.o
@rm -f *.a