mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
c8c0ac4e78
Original commit message from CVS: An example using autoplug. Works for mp3 files only for now.
10 lines
213 B
Makefile
10 lines
213 B
Makefile
|
|
CC = gcc
|
|
|
|
helloworld2: helloworld2.c
|
|
$(CC) -Wall `gstreamer-config --cflags` `gtk-config --cflags` helloworld2.c -o helloworld2 `gstreamer-config --libs` `gtk-config --libs`
|
|
|
|
clean:
|
|
rm -f *.o helloworld2
|
|
|
|
|