Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. all: lib main.c
  2. gcc -L`pwd` -Wall -o test main.c -lnsd -lm
  3. lib: nsd.c nsd.h nd.c nd.h
  4. gcc -c -Wall -Werror -fpic nsd.c
  5. gcc -c -Wall -Werror -fpic nd.c
  6. gcc -shared -o libnsd.so nsd.o nd.o
  7. clean:
  8. rm nsd.o nd.o libnsd.so test
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement