dashboard
repositories
filestore
activity
search
login
main
/
rpi
RaspberrPi project source code
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Update iotd to add enable switch for publish
Guo Wenxue
2025-01-11
8d8ac376754738b12cfa8bb02994b0ecca805163
[rpi.git]
/
project
/
openlibs
/
makefile
1
2
3
4
5
6
7
8
9
10
PRJ_PATH=$(shell pwd)
libs=libgpiod cjson openssl mosquitto libevent
all:
for dir in ${libs} ; do cd ${PRJ_PATH}/$${dir} && ./build.sh ; done
clean:
rm -rf install
for dir in ${libs} ; do cd ${PRJ_PATH}/$${dir} && ./build.sh -c ; done