Guest User

Untitled

a guest
Apr 12th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.55 KB | None | 0 0
  1. all: client
  2.  
  3.  
  4. interface.o: interface.c client.h common.h
  5.         gcc -c -o interface.o interface.c
  6.  
  7. client.o: client.c client.h rpc_client.h common.h
  8.         gcc -c -o client.o client.c
  9.  
  10. rpc_client.o: rpc_client.c rpc_client.h common.h
  11.         gcc -c -o rpc_client.o rpc_client.c
  12.  
  13. common.o: common.c common.h
  14.         gcc -c -o common.o common.c
  15.        
  16. client: interface.o client.o rpc_client.o common.o
  17.         gcc -o client interface.o client.o rpc_client.o common.o
  18.  
  19.  
  20. clean:
  21.         rm -f interface.o client.o rpc_client.o common.o
Add Comment
Please, Sign In to add comment