mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-03 23:16:38 +00:00
18 lines
467 B
Makefile
18 lines
467 B
Makefile
|
TARGETS = playbin-player.exe
|
||
|
DEBUGS = $(addsuffix .mdb, $(TARGETS))
|
||
|
|
||
|
assemblies=$(top_builddir)/gstreamer-sharp/gstreamer-sharp.dll
|
||
|
references=$(addprefix /r:, $(assemblies))
|
||
|
|
||
|
playbin-player.exe: $(srcdir)/PlayBinPlayer.cs $(assemblies)
|
||
|
$(CSC) $(GLIBSHARP_LIBS) $(references) $(srcdir)/PlayBinPlayer.cs \
|
||
|
/out:playbin-player.exe
|
||
|
|
||
|
noinst_SCRIPTS = $(TARGETS)
|
||
|
|
||
|
CLEANFILES = $(TARGETS) $(DEBUGS)
|
||
|
MAINTAINERCLEANFILES = Makefile.in
|
||
|
|
||
|
EXTRA_DIST = \
|
||
|
PlayBinPlayer.cs
|