mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
5307686379
Original commit message from CVS: cleaned up the examples, added Makefiles, etc
14 lines
333 B
Makefile
14 lines
333 B
Makefile
CC = libtool gcc
|
|
|
|
all: createxml runxml
|
|
|
|
createxml: createxml.c
|
|
$(CC) -Wall -I../../ ../../gst/libgst.la `gnome-config --cflags --libs gnomeui` createxml.c -o createxml
|
|
|
|
runxml: runxml.c
|
|
$(CC) -Wall -I../../ ../../gst/libgst.la `gnome-config --cflags --libs gnomeui` runxml.c -o runxml
|
|
|
|
clean:
|
|
rm -f *.o createxml runxml
|
|
|
|
|