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