mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-24 02:55:39 +00:00
722954e799
* atk/Makefile.am * glib/Makefile.am * Makefile.include: Added new 'moonlight' target, to build with smcs. svn path=/trunk/gtk-sharp/; revision=131780
39 lines
705 B
Makefile
39 lines
705 B
Makefile
SUBDIRS = . glue
|
|
|
|
pkg = atk
|
|
METADATA = Atk.metadata
|
|
SYMBOLS =
|
|
references = ../glib/glib-sharp.dll
|
|
|
|
glue_includes = atk/atk.h
|
|
|
|
sources = \
|
|
TextChangedDetail.cs
|
|
|
|
customs = \
|
|
Global.custom \
|
|
Hyperlink.custom \
|
|
Misc.custom \
|
|
Object.custom \
|
|
SelectionAdapter.custom \
|
|
TextAdapter.custom \
|
|
Util.custom
|
|
|
|
add_dist =
|
|
|
|
MOON_DIR=$(top_builddir)/moonbin/
|
|
MOON_ASSEMBLY=$(MOON_DIR)$(ASSEMBLY)
|
|
|
|
references_moon = $(MOON_DIR)glib-sharp.dll
|
|
build_references_moon = $(addprefix /r:, $(references_moon))
|
|
|
|
moonlight: $(MOON_ASSEMBLY)
|
|
|
|
$(MOON_ASSEMBLY): $(references_moon) $(ASSEMBLY)
|
|
smcs -define:NET_2_1 $(build_references_moon) $(BUILD_PARAMS) -out:$@
|
|
$(GAPI_CDECL_INSERT)
|
|
|
|
include ../Makefile.include
|
|
|
|
|