e83c55a242
* */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
35 lines
728 B
Makefile
35 lines
728 B
Makefile
SUBDIRS = GAPI
|
|
|
|
assemblydir = $(bindir)
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
assembly_DATA = gapi-fixup.exe
|
|
pkgconfig_DATA = gapi.pc
|
|
bin_SCRIPTS = gapi.pl gapi_pp.pl gapi2xml.pl gapi-fixup gapi-parser
|
|
CLEANFILES = gapi-fixup.exe
|
|
DISTCLEANFILES = gapi-fixup gapi.pc
|
|
|
|
sources = \
|
|
gapi-fixup.cs
|
|
|
|
build_sources = $(addprefix $(srcdir)/, $(sources))
|
|
|
|
EXTRA_DIST = \
|
|
makefile.win32 \
|
|
$(sources) \
|
|
gapi-parser \
|
|
gapi.pl \
|
|
gapi_pp.pl \
|
|
gapi2xml.pl \
|
|
gapi.pc.in
|
|
|
|
gapi-fixup.exe: $(build_sources)
|
|
$(CSC) /out:gapi-fixup.exe $(build_sources)
|
|
|
|
INCLUDES = $(GLIB_CFLAGS) $(XML_CFLAGS)
|
|
|
|
bin_PROGRAMS = gapi_format_xml
|
|
|
|
gapi_format_xml_SOURCES = formatXml.c
|
|
|
|
gapi_format_xml_LDADD = $(GLIB_LIBS) $(XML_LIBS)
|
|
|