mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 06:05:39 +00:00
9a09de34cb
svn path=/trunk/gtk-sharp/; revision=127004
24 lines
524 B
Makefile
Executable file
24 lines
524 B
Makefile
Executable file
TARGETS = MountOperation.exe
|
|
|
|
DEBUGS = $(addsuffix .mdb, $(TARGETS))
|
|
|
|
assemblies = \
|
|
$(top_builddir)/glib/glib-sharp.dll \
|
|
$(top_builddir)/gtk/gtk-sharp.dll \
|
|
$(top_builddir)/gio/gio-sharp.dll \
|
|
$(top_builddir)/gdk/gdk-sharp.dll \
|
|
$(top_builddir)/pango/pango-sharp.dll \
|
|
$(top_builddir)/atk/atk-sharp.dll
|
|
|
|
references=$(addprefix /r:, $(assemblies))
|
|
|
|
noinst_SCRIPTS = $(TARGETS)
|
|
CLEANFILES = $(TARGETS) $(DEBUGS)
|
|
|
|
.cs.exe: $(assemblies)
|
|
$(CSC) /out:$@ $(references) $<
|
|
|
|
EXTRA_DIST = \
|
|
MountOperation.cs
|
|
|