gstreamer/examples/thread/Makefile
Wim Taymans 1351aba899 A thread example.
Original commit message from CVS:
A thread example.
An example of gstreamer-launch: an mp3 player
2000-09-09 16:39:03 +00:00

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