Guest User

Untitled

a guest
Apr 12th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.34 KB | None | 0 0
  1. all: client
  2.  
  3.  
  4. interface.o: interface.c interface.h client.h
  5.     gcc -c -o interface.o interface.c
  6.  
  7. client.o: client.c client.h rpc_client.h
  8.     gcc -c -o client.o client.c
  9.  
  10. rpc_client.o: rpc_client.c rpc_client.h
  11.     gcc -c -o rpc_client.o rpc_client.c
  12.  
  13. client: interface.o client.o rpc_client.o
  14.     gcc -o client interface.o client.o rpc_client.o
Add Comment
Please, Sign In to add comment