all:udps udpc

udps:udpserv.c
    gcc -Wall -o udps udpserv.c
udpc:udpclient.c
    gcc -Wall -o udpc udpclient.c
clean:
    rm udpc udps

05-11 22:34