Ryujinx-GtkSharp/pango/Makefile.am
Mike Kestner e4c7f28e66 2004-04-29 Mike Kestner <mkestner@ximian.com>
* 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
2004-04-29 22:19:30 +00:00

51 lines
1.4 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) $(ASSEMBLY).config
gapi_DATA = $(API)
CLEANFILES = $(ASSEMBLY) generated-stamp generated/*.cs $(API)
DISTCLEANFILES = $(ASSEMBLY).config AssemblyInfo.cs
sources = \
Scale.cs
build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs
dist_sources = $(sources)
customs = \
AttrIterator.custom \
GlyphItem.custom \
Layout.custom
build_customs = $(addprefix $(srcdir)/, $(customs))
dist_customs = $(customs)
EXTRA_DIST = \
makefile.win32 \
$(ASSEMBLY).config.in \
AssemblyInfo.cs.in \
$(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