added headers and such to Makefile.am for dist
[platform/upstream/gstreamer.git] / examples / helloworld / Makefile
1 CC = libtool gcc
2
3 helloworld: helloworld.c 
4         $(CC) -Wall -I../../ ../../gst/libgst.la `gnome-config --cflags --libs gnomeui` helloworld.c -o helloworld 
5
6 clean: 
7         rm -f *.o helloworld
8         
9