summaryrefslogtreecommitdiff
path: root/xine/BluRay/Makefile
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2009-10-21 00:02:02 +0000
committercvs2svn <admin@example.com>2009-10-21 00:02:02 +0000
commit97a97ca3358eb48de3eb7a222e487e800566569f (patch)
tree97c920d0225a1c9773a3bce2207f261d7d230123 /xine/BluRay/Makefile
parenta61961358c5a2ec92340b3f8e056bab55438f103 (diff)
downloadxineliboutput-CVS.tar.gz
xineliboutput-CVS.tar.bz2
This commit was manufactured by cvs2svn to create branch 'CVS'.CVS
Diffstat (limited to 'xine/BluRay/Makefile')
-rw-r--r--xine/BluRay/Makefile33
1 files changed, 0 insertions, 33 deletions
diff --git a/xine/BluRay/Makefile b/xine/BluRay/Makefile
deleted file mode 100644
index 531449c6..00000000
--- a/xine/BluRay/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-
-XINEDMXPLUGIN = xineplug_dmx_mpeg_ts_hdmv.so
-OBJS_XINEDMXPLUGIN = demux_ts.o
-XINESPUPLUGIN = xineplug_decode_spuhdmv.so
-OBJS_XINESPUPLUGIN = decode_spuhdmv.o
-
-LIBS_XINE = $(shell pkg-config libxine --libs)
-CFLAGS += $(shell pkg-config libxine --cflags)
-CFLAGS += -Ixine
-CFLAGS += -O2 -fPIC
-XINEPLUGINDIR = $(shell pkg-config libxine --variable=plugindir)
-DESTDIR = /
-INSTALL = install
-LDFLAGS += -shared -fvisibility=hidden
-
-all: $(XINEDMXPLUGIN) $(XINESPUPLUGIN)
-
-$(XINEDMXPLUGIN): $(OBJS_XINEDMXPLUGIN)
- $(CC) $(CFLAGS) $(LDFLAGS) $(LIBS_XINE) -o $@ $(OBJS_XINEDMXPLUGIN)
-
-$(XINESPUPLUGIN): $(OBJS_XINESPUPLUGIN)
- $(CC) $(CFLAGS) $(LDFLAGS) $(LIBS_XINE) -o $@ $(OBJS_XINESPUPLUGIN)
-
-clean:
- @rm -rf *.o *.so *~
-
-install: all
- @echo Installing $(DESTDIR)/$(XINEPLUGINDIR)/$(XINEDMXPLUGIN)
- @-rm -rf $(DESTDIR)/$(XINEPLUGINDIR)/$(XINEDMXPLUGIN)
- @$(INSTALL) -m 0644 $(XINEDMXPLUGIN) $(DESTDIR)/$(XINEPLUGINDIR)/$(XINEDMXPLUGIN)
- @echo Installing $(DESTDIR)/$(XINEPLUGINDIR)/$(XINESPUPLUGIN)
- @-rm -rf $(DESTDIR)/$(XINEPLUGINDIR)/$(XINESPUPLUGIN)
- @$(INSTALL) -m 0644 $(XINESPUPLUGIN) $(DESTDIR)/$(XINEPLUGINDIR)/$(XINESPUPLUGIN)