Makefile (115B)
1 all: 2 cc rps_server.c -o rps_server 3 cc rps_client.c -o rps_client 4 5 clean: 6 rm -f rps_server rps_client *.core *.o