Advertisement
Guest User

Untitled

a guest
Apr 4th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.36 KB | None | 0 0
  1. pp.o: pp.c
  2.     gcc -c pp.c
  3. pj.o: pj.c
  4.     gcc -c pj.c
  5. pr.o: pr.c
  6.     gcc -fPIC -c pr.c
  7. pg.o: pg.c
  8.     gcc -fPIC -c pg.c
  9. libjp.a: pj.o pp.o
  10.     ar rs libjp.a pj.o pp.o
  11. libgr.so: pg.o pr.o
  12.     gcc -shared -fPIC -o libgr.so pg.o pr.o
  13. thebeatles.o: thebeatles.c
  14.     gcc -c thebeatles.c
  15. thebeatles: thebeatles.o libgr.so libjp.a
  16.     gcc -o thebeatles thebeatles.o libgr.so libjp.a
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement