mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-03 15:06:34 +00:00
17 lines
313 B
Makefile
17 lines
313 B
Makefile
|
TARGETS = gst-gapi-fixup.exe
|
||
|
DEBUGS = $(addsuffix .mdb, $(TARGETS))
|
||
|
|
||
|
all: $(TARGETS)
|
||
|
|
||
|
gst-gapi-fixup.exe: $(srcdir)/gst-gapi-fixup.cs
|
||
|
$(CSC) -out:$@ $(srcdir)/gst-gapi-fixup.cs
|
||
|
|
||
|
noinst_SCRIPTS = $(TARGETS)
|
||
|
|
||
|
CLEANFILES = $(TARGETS) $(DEBUGS)
|
||
|
MAINTAINERCLEANFILES = Makefile.in
|
||
|
|
||
|
EXTRA_DIST = \
|
||
|
gst-gapi-fixup.cs
|
||
|
|