mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
31d31ddc2a
Original commit message from CVS: Cleanups. The first steps to a Glade like XML handling. A first example of what is to come...
15 lines
260 B
Makefile
15 lines
260 B
Makefile
|
|
CC = gcc
|
|
|
|
all: createxml runxml
|
|
|
|
createxml: createxml.c
|
|
$(CC) -Wall `gstreamer-config --cflags --libs` createxml.c -o createxml
|
|
|
|
runxml: runxml.c
|
|
$(CC) -Wall `gstreamer-config --cflags --libs` runxml.c -o runxml
|
|
|
|
clean:
|
|
rm -f *.o createxml runxml
|
|
|
|
|