Guest User

Untitled

a guest
Apr 12th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.46 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
  15.  
  16.  
  17.  
  18. .PHONY: clean mrproper
  19.  
  20. clean:
  21.     rm -f interface.o client.o rpc_client.o
  22.  
  23. mrproper: clean
  24.     rm -f client
Add Comment
Please, Sign In to add comment