8 lines
202 B
Bash
Executable File
8 lines
202 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# rpcgen -a -M square.x
|
|
|
|
gcc -o ServerSQUARE ServerSideProc.c square_svc.c square_xdr.c -lpthread -lnsl
|
|
|
|
gcc -o ClientSQUARE ClientSideProc.c square_clnt.c square_xdr.c -lpthread -lnsl
|