Makefile (86B)
1 all: clean 2 cc -o client client.c 3 cc -o server server.c 4 5 clean: 6 rm -f client server