mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
1351aba899
Original commit message from CVS: A thread example. An example of gstreamer-launch: an mp3 player
10 lines
128 B
Makefile
10 lines
128 B
Makefile
|
|
CC = gcc
|
|
|
|
thread: thread.c
|
|
$(CC) -Wall `gstreamer-config --cflags --libs` thread.c -o thread
|
|
|
|
clean:
|
|
rm -f *.o thread
|
|
|
|
|