blob: 57e6324bd5dc129c4d7d286cc6780e7a06e27e51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
all: chatty server send
clean:
rm -f server chatty send _id _clients
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
|