summaryrefslogtreecommitdiffstats
path: root/ext/metadata/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ext/metadata/test/Makefile')
-rw-r--r--ext/metadata/test/Makefile16
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
+