gstreamer/tests/old/examples/helloworld/Makefile
Wim Taymans 284ecaecca helloworld example. and docs
Original commit message from CVS:
helloworld example. and docs
2000-08-18 20:38:54 +00:00

11 lines
208 B
Makefile

CC = gcc
helloworld: helloworld.c
$(CC) -Wall `gstreamer-config --cflags` `gtk-config --cflags` helloworld.c -o helloworld `gstreamer-config --libs` `gtk-config --libs`
clean:
rm -f *.o helloworld