Advertisement
Guest User

Untitled

a guest
Nov 25th, 2015
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. root@kali:~# make
  2. make: *** No rule to make target 'Question.c', needed by 'question'. Stop.
  3. root@kali:~# cat Makefile
  4. all:question
  5.  
  6. question: Question.c
  7. gcc -fPIC -c questions.c
  8. ld -x --shared –o questions.so questions.o
  9. cp questions.o /lib/security
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement