2006-05-21 18:58:44 +00:00
|
|
|
TARGETS = playbin-player.exe decodebin-transcoder.exe
|
2006-05-19 19:24:35 +00:00
|
|
|
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
|
|
|
|
|
2006-05-21 18:58:44 +00:00
|
|
|
decodebin-transcoder.exe: $(srcdir)/DecodeBinTranscoder.cs $(assemblies)
|
|
|
|
$(CSC) -out:$@ $(GLIBSHARP_LIBS) $(references) $(srcdir)/DecodeBinTranscoder.cs
|
|
|
|
|
2006-05-19 19:24:35 +00:00
|
|
|
noinst_SCRIPTS = $(TARGETS)
|
|
|
|
|
|
|
|
CLEANFILES = $(TARGETS) $(DEBUGS)
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
|
2006-05-21 18:58:44 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
PlayBinPlayer.cs \
|
|
|
|
DecodeBinTranscoder.cs
|