mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 17:05:27 +00:00
e4c7f28e66
* configure.in : expand the AssemblyInfo.cs files. * */AssemblyInfo.cs.in : new assembly info files. * */Makefile.am : dist, make, and clean assmbly info files. svn path=/trunk/gtk-sharp/; revision=26356
58 lines
1.2 KiB
Makefile
58 lines
1.2 KiB
Makefile
SUBDIRS = glue
|
|
|
|
ASSEMBLY = glib-sharp.dll
|
|
assemblydir = $(libdir)
|
|
assembly_DATA = $(ASSEMBLY) $(ASSEMBLY).config
|
|
CLEANFILES = $(ASSEMBLY)
|
|
DISTCLEANFILES = $(ASSEMBLY).config AssemblyInfo.cs
|
|
|
|
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)) AssemblyInfo.cs
|
|
dist_sources = $(sources)
|
|
|
|
EXTRA_DIST = \
|
|
$(dist_sources) \
|
|
$(ASSEMBLY).config.in \
|
|
AssemblyInfo.cs.in \
|
|
makefile.win32
|
|
|
|
$(ASSEMBLY): $(build_sources)
|
|
$(CSC) /out:$(ASSEMBLY) /target:library $(references) $(build_sources)
|
|
|