Guest User

Untitled

a guest
Mar 24th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. CFLAGS= -pthread
  2. -I/usr/include/gtk-3.0
  3. -I/usr/include/pango-1.0
  4. -I/usr/include/atk-1.0
  5. -I/usr/include/cairo
  6. -I/usr/include/gdk-pixbuf-2.0
  7. -I/usr/include/glib-2.0
  8. -I/usr/lib/x86_64-linux-gnu/glib-2.0/include
  9.  
  10. all: libsgtk.so
  11.  
  12. libsgtk.so: window.o
  13. gcc -shared -o libsgtk.so window.o
  14.  
  15. window.o: window.c
  16. gcc $(CFLAGS) -c -fpic window.c
  17.  
  18. clean:
  19. rm window.o
  20.  
  21. install:
  22. mv libsgtk.so /usr/local/lib
Add Comment
Please, Sign In to add comment