Re: compile 2 libs together

2009-01-20 Thread Till Harbaum / Lists
Hi, Am Dienstag 20 Januar 2009 schrieb frederico schardong: > But now I must use allegro and libglade together. Why not: gcc -o main main.c `pkg-config --cflags --libs libglade-2.0` `allegro-config --libs` Till ___ gtk-app-devel-list mailing list gtk-

compile 2 libs together

2009-01-20 Thread frederico schardong
Hi, when I'm using allegro, this line is to compile it: gcc -o main main.c `allegro-config --libs` and when I'm using libglade, this line is used: gcc -o main main.c `pkg-config --cflags --libs libglade-2.0` But now I must use allegro and libglade together. How I can compile this together? Tha