Guest User

Untitled

a guest
Feb 21st, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. all: uvsysc.so
  2.  
  3. uvsysc.so: uvsysc.c
  4. $(CC) -fPIC -shared -o $@ $< -ldl
  5.  
  6. clean:
  7. rm uvsysc.so
  8.  
  9. .PHONY: clean
Add Comment
Please, Sign In to add comment