dashboard
repositories
filestore
activity
search
login
main
/
raspberrypi
RaspberryPI project
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Update ds18b20 and move ds18b20 and sht20 into modules folder
guowenxue
2018-10-14
0007a0beea36408539e623d742787c38c03b5c80
[raspberrypi.git]
/
program
/
modules
/
ds18b20
/
makefile
1
2
3
4
5
6
7
8
9
10
11
INST_PATH=/usr/bin
BIN_NAME=ds18b20
all:
gcc ds18b20.c -o ${BIN_NAME}
clean:
rm -f ${BIN_NAME}
install:
@cp ${BIN_NAME} ${INST_PATH}