mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
5de4ca65e6
This enables us to build with gtk-sharp 2.12.9.90 instead of current trunk (which will be released together with GNOME 3.0 or similar).
26 lines
622 B
Makefile
26 lines
622 B
Makefile
TARGETS = gst-gapi-fixup.exe gst-generate-tags.exe gst-gapi-parser.exe
|
|
DEBUGS = $(addsuffix .mdb, $(TARGETS))
|
|
|
|
all: $(TARGETS)
|
|
|
|
gst-gapi-fixup.exe: $(srcdir)/gst-gapi-fixup.cs
|
|
$(CSC) -out:$@ $(srcdir)/gst-gapi-fixup.cs
|
|
|
|
gst-generate-tags.exe: $(srcdir)/gst-generate-tags.cs
|
|
$(CSC) -out:$@ $(srcdir)/gst-generate-tags.cs
|
|
|
|
gst-gapi-parser.exe: $(srcdir)/gapi-parser.cs
|
|
$(CSC) -out:$@ $(srcdir)/gapi-parser.cs
|
|
|
|
|
|
noinst_SCRIPTS = $(TARGETS) gapi_pp.pl gapi2xml.pl
|
|
|
|
CLEANFILES = $(TARGETS) $(DEBUGS)
|
|
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
EXTRA_DIST = \
|
|
gst-gapi-fixup.cs \
|
|
gst-generate-tags.cs \
|
|
gapi_pp.pl \
|
|
gapi2xml.pl
|
|
|