diff options
Diffstat (limited to 'examples/xml')
-rw-r--r-- | examples/xml/Makefile | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/examples/xml/Makefile b/examples/xml/Makefile index e15dfc909..1df7ca62f 100644 --- a/examples/xml/Makefile +++ b/examples/xml/Makefile @@ -1,15 +1,9 @@ - CC = libtool 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 +xml: xml.c + $(CC) -Wall -I../../ ../../gst/libgst.la `gnome-config --cflags --libs gnomeui` xml.c -o xml clean: - rm -f *.o createxml runxml + rm -f *.o xml |