diff options
author | Erik Walthinsen <omega@temple-baptist.org> | 2001-01-01 00:34:13 +0000 |
---|---|---|
committer | Erik Walthinsen <omega@temple-baptist.org> | 2001-01-01 00:34:13 +0000 |
commit | 0b650eb7378a12efddaa63caa3347307386502c9 (patch) | |
tree | 8f64059d7a4e288984bdbd2b71a1396054b688f2 /examples/xml | |
parent | e0aa5bae14231b3c2022736a1279ba02e4637dba (diff) |
Updated makefiles for examples
Original commit message from CVS:
Updated makefiles for examples
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 |