gstreamer/examples/thread/Makefile

11 lines
128 B
Makefile
Raw Normal View History

CC = gcc
thread: thread.c
$(CC) -Wall `gstreamer-config --cflags --libs` thread.c -o thread
clean:
rm -f *.o thread