hi... i am not able to compile my test program which uses gtkmozembed.As i am very new to this, i dont know which are the packages to be installed and how to compile

#include <gtk/gtk.h>
#include <stdio.h>
#include <gtkmozembed.h>
int main(){
GtkWidget *mozEmbed;
mozEmbed = gtk_moz_embed_new();
return 0;
}

i am trying to compile like this
gcc `pkg-config --cflags --libs gtk+-2.0` test.c -o test
can anyone help me by telling what are the basic packages to be installed and how to compile. All packages required for gtk are installed and gtk application runs fine
Thank you...