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