mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
11 lines
177 B
Makefile
11 lines
177 B
Makefile
|
|
||
|
CC = gcc
|
||
|
|
||
|
autoplug: autoplug.c
|
||
|
$(CC) -Wall `gstreamer-config --cflags --libs` `gnome-config --cflags --libs gnomeui` autoplug.c -o autoplug
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o autoplug
|
||
|
|
||
|
|