dashboard
repositories
filestore
activity
search
login
main
/
raspberrypi
RaspberryPI project
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
update socket_server.c, fix Address already in use bug, setsockopt must p...
Guo Wenxue
2018-10-24
357fe7ceed7c2cf00cbe1b26e19cd2b9fde51aab
[raspberrypi.git]
/
apue
/
1.File_IO
/
makefile
1
2
3
4
5
6
7
8
9
10
11
INST_PATH=/usr/bin
BIN_NAME=ds18b20
all:
gcc ${BIN_NAME}.c -o ${BIN_NAME}
clean:
rm -f ${BIN_NAME}
install:
@cp ${BIN_NAME} ${INST_PATH}