mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
284ecaecca
Original commit message from CVS: helloworld example. and docs
10 lines
208 B
Makefile
10 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
|
|
|
|
|