GtkSharp/glib/Makefile.am
Mike Kestner e83c55a242 2004-03-12 Mike Kestner <mkestner@ximian.com>
* */Makefile.am : automakify the build
	* */Makefile.in : kill
	* *.custom : remove System.Drawing dependencies
	* *.cs : remove System.Drawing dependencies
	* *-api.xml : mv to *-api.raw
	* glue/* : mv to lib specific gluelibs for glib, gdk, gtk, and glade.
	* gtk/gtk-symbols : alias GtkType to GType
	* sources/gtk-sharp-sources.xml : create .raw files. They are now
	transformed to .xml files by the metadata compilation step.

svn path=/trunk/gtk-sharp/; revision=23967
2004-03-12 21:18:11 +00:00

54 lines
1,018 B
Makefile

SUBDIRS = glue
ASSEMBLY = glib-sharp.dll
assemblydir = $(libdir)
assembly_DATA = $(ASSEMBLY)
CLEANFILES = $(ASSEMBLY)
references =
sources = \
Boxed.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) \
makefile.win32
$(ASSEMBLY): $(build_sources)
$(CSC) /out:$(ASSEMBLY) /target:library $(references) $(build_sources)