dashboard
repositories
filestore
activity
search
login
main
/
raspberrypi
RaspberryPI project
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
update lightd main.c, add lux sensor support and test ok
guowenxue
2021-01-28
a903b916f09419e7324a2352232e601acc598d67
[raspberrypi.git]
/
apue
/
4.Socket_Server
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
BIN_FILES=tcp_server udp_server
all: clean ${BIN_FILES}
tcp_server:
gcc $@.c -o $@
udp_server:
gcc $@.c -o $@
clean:
@rm -f ${BIN_FILES}