gstreamer/tests/old/examples/xml/Makefile
Wim Taymans 31d31ddc2a Cleanups.
Original commit message from CVS:
Cleanups.
The first steps to a Glade like XML handling.
A first example of what is to come...
2000-09-24 22:45:48 +00:00

16 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