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