diff options
author | Edgard Lima <edgard.lima@indt.org.br> | 2007-12-13 12:45:06 +0000 |
---|---|---|
committer | Edgard Lima <edgard.lima@indt.org.br> | 2007-12-13 12:45:06 +0000 |
commit | 334b512629cc91ea21b0ae32f0b9b6d980059c18 (patch) | |
tree | 956efa64741b9b5b4a3e25071dc1f8326c1f46b3 /ext/metadata/test/Makefile | |
parent | 9adb4f78700ae4a55416fd024d9ca5fea3f5ccbe (diff) | |
download | gst-plugins-bad-334b512629cc91ea21b0ae32f0b9b6d980059c18.tar.gz gst-plugins-bad-334b512629cc91ea21b0ae32f0b9b6d980059c18.tar.bz2 gst-plugins-bad-334b512629cc91ea21b0ae32f0b9b6d980059c18.zip |
Added a test application. Added some EXIF tags. Fixed a muxer bug.
Original commit message from CVS:
Added a test application. Added some EXIF tags. Fixed a muxer bug.
Diffstat (limited to 'ext/metadata/test/Makefile')
-rw-r--r-- | ext/metadata/test/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ext/metadata/test/Makefile b/ext/metadata/test/Makefile new file mode 100644 index 00000000..dfcd3f73 --- /dev/null +++ b/ext/metadata/test/Makefile @@ -0,0 +1,16 @@ + +CC=gcc +CFLAGS=-c -Wall -g3 -O0 `pkg-config --cflags gstreamer-0.10 libglade-2.0 gtk+-2.0` +CLIBS=-lgstinterfaces-0.10 -Wl -export-dynamic `pkg-config --libs gstreamer-0.10 libglade-2.0 gtk+-2.0` + +all: metadata_editor + +metadata_editor: metadata_editor.o + $(CC) $(CLIBS) metadata_editor.o -o metadata_editor + +metadata_editor.o: metadata_editor.c + $(CC) $(CFLAGS) metadata_editor.c + +clean: + rm -rf *.o metadata_editor + |