blob: aa3eea136f09234e27b3c838d821bf38def41485 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
all: chatty server send
clean:
rm -f server chatty send tags *.log _*
chatty:
gcc -ggdb -Wall -pedantic -std=c99 -o chatty chatty.c
server:
gcc -ggdb -Wall -pedantic -std=c99 -o server server.c
send:
gcc -ggdb -Wall -pedantic -std=c99 -o send send.c
|