mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
552b7f32aa
Original commit message from CVS: Changes to gstreamer-config to include gtk+ libs manual changes: queues, threads, programs gsteditor does not crash anymore. gstpipline new should return a GstElement * fixed ac3dec for new getbits fixes to gstreamer-launch more efficient startup for gstplay.
10 lines
153 B
Makefile
10 lines
153 B
Makefile
|
|
CC = gcc
|
|
|
|
helloworld2: helloworld2.c
|
|
$(CC) -Wall `gstreamer-config --cflags --libs` helloworld2.c -o helloworld2
|
|
|
|
clean:
|
|
rm -f *.o helloworld2
|
|
|
|
|