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
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
API = pango-api.xml
|
|
RAW_API = pango-api.raw
|
|
METADATA = Pango.metadata
|
|
ASSEMBLY_NAME = pango-sharp
|
|
references = /r:../glib/glib-sharp.dll
|
|
|
|
ASSEMBLY = $(ASSEMBLY_NAME).dll
|
|
assemblydir = $(libdir)
|
|
gapidir = $(datadir)/gapi
|
|
assembly_DATA = $(ASSEMBLY)
|
|
gapi_DATA = $(API)
|
|
CLEANFILES = $(ASSEMBLY) generated-stamp generated/*.cs $(API)
|
|
|
|
sources = \
|
|
Scale.cs
|
|
|
|
build_sources = $(addprefix $(srcdir)/, $(sources))
|
|
dist_sources = $(sources)
|
|
|
|
customs = \
|
|
AttrIterator.custom \
|
|
GlyphItem.custom \
|
|
Layout.custom
|
|
|
|
build_customs = $(addprefix $(srcdir)/, $(customs))
|
|
dist_customs = $(customs)
|
|
|
|
EXTRA_DIST = \
|
|
makefile.win32 \
|
|
$(RAW_API) \
|
|
$(METADATA) \
|
|
$(dist_customs) \
|
|
$(dist_sources)
|
|
|
|
$(API): $(srcdir)/$(METADATA) $(srcdir)/$(RAW_API)
|
|
cp $(srcdir)/$(RAW_API) $(API)
|
|
chmod u+w $(API)
|
|
$(RUNTIME) ../parser/gapi-fixup.exe --api=$(API) --metadata=$(srcdir)/$(METADATA)
|
|
|
|
generated-stamp: $(API) ../generator/gapi_codegen.exe $(build_customs)
|
|
$(RUNTIME) ../generator/gapi_codegen.exe --generate $(API) \
|
|
--outdir=generated --customdir=$(srcdir) --assembly-name=$(ASSEMBLY_NAME) \
|
|
&& touch generated-stamp
|
|
|
|
$(ASSEMBLY): $(build_sources) generated-stamp
|
|
$(CSC) --unsafe /out:$(ASSEMBLY) /target:library $(references) $(build_sources) generated/*.cs
|
|
|