mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 08:15:43 +00:00
9bc8928f88
* configure.in : expand the new config files. * */*config.in : the per-assembly config files. * */Makefile.am : dist, clean, and install the configs. * gnome/*.c* : fix some errant DllImports. svn path=/trunk/gtk-sharp/; revision=26301
57 lines
1.1 KiB
Makefile
57 lines
1.1 KiB
Makefile
SUBDIRS = glue
|
|
|
|
ASSEMBLY = glib-sharp.dll
|
|
assemblydir = $(libdir)
|
|
assembly_DATA = $(ASSEMBLY) $(ASSEMBLY).config
|
|
CLEANFILES = $(ASSEMBLY)
|
|
DISTCLEANFILES = $(ASSEMBLY).config
|
|
|
|
references =
|
|
|
|
sources = \
|
|
Boxed.cs \
|
|
ConnectBeforeAttribute.cs \
|
|
DefaultSignalHandlerAttribute.cs \
|
|
DelegateWrapper.cs \
|
|
EnumWrapper.cs \
|
|
FileUtils.cs \
|
|
GException.cs \
|
|
Idle.cs \
|
|
IWrapper.cs \
|
|
ListBase.cs \
|
|
List.cs \
|
|
Log.cs \
|
|
MainContext.cs \
|
|
ManagedValue.cs \
|
|
Markup.cs \
|
|
Marshaller.cs \
|
|
Object.cs \
|
|
ObjectManager.cs \
|
|
Opaque.cs \
|
|
SignalArgs.cs \
|
|
SignalAttribute.cs \
|
|
SignalCallback.cs \
|
|
SList.cs \
|
|
Source.cs \
|
|
Thread.cs \
|
|
Timeout.cs \
|
|
time_t_CustomMarshaler.cs \
|
|
TypeConverter.cs \
|
|
Type.cs \
|
|
TypeFundamentals.cs \
|
|
UnwrappedObject.cs \
|
|
ValueArray.cs \
|
|
Value.cs
|
|
|
|
build_sources = $(addprefix $(srcdir)/, $(sources))
|
|
dist_sources = $(sources)
|
|
|
|
EXTRA_DIST = \
|
|
$(dist_sources) \
|
|
$(ASSEMBLY).config.in \
|
|
makefile.win32
|
|
|
|
$(ASSEMBLY): $(build_sources)
|
|
$(CSC) /out:$(ASSEMBLY) /target:library $(references) $(build_sources)
|
|
|