mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
c6b47b8ed2
Original commit message from CVS: An example of two threads and two queues.
10 lines
128 B
Makefile
10 lines
128 B
Makefile
|
|
CC = gcc
|
|
|
|
queue4: queue4.c
|
|
$(CC) -Wall `gstreamer-config --cflags --libs` queue4.c -o queue4
|
|
|
|
clean:
|
|
rm -f *.o queue4
|
|
|
|
|