dashboard
repositories
filestore
activity
search
login
main
/
raspberrypi
RaspberryPI project
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
update mqttd for auto fill-in light and test ok
guowenxue
2019-07-31
8a0e43e2ba062b35f20ddcd83a7811a9e1a71786
[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}