mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-15 21:06:32 +00:00
11 lines
128 B
Makefile
11 lines
128 B
Makefile
|
|
||
|
CC = gcc
|
||
|
|
||
|
thread: thread.c
|
||
|
$(CC) -Wall `gstreamer-config --cflags --libs` thread.c -o thread
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o thread
|
||
|
|
||
|
|