dashboard
repositories
filestore
activity
search
login
main
/
raspberrypi
RaspberryPI project
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
add cJSON, update mosquitto to 1.6.3 and update the makefile
Guo Wenxue
2019-06-24
809c78de808ed5563e9af4a56227965974ec25fa
[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