dashboard
repositories
filestore
activity
search
login
main
/
rpi
RaspberrPi project source code
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
update modules makefile to support build libgpiod on x86
guowenxue
2025-02-23
7d9973022f5417a9fbd11f25536186f1cac5d38b
[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