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, 0 insertions, 16 deletions
diff --git a/ext/metadata/test/Makefile b/ext/metadata/test/Makefile
deleted file mode 100644
index dfcd3f73..00000000
--- a/ext/metadata/test/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-
-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
-