mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 05:35:38 +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
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
#SUBDIRS = . glue
|
|
|
|
API = atk-api.xml
|
|
RAW_API = atk-api.raw
|
|
METADATA = Atk.metadata
|
|
ASSEMBLY_NAME = atk-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) glue/generated.c
|
|
DISTCLEANFILES = $(ASSEMBLY).config AssemblyInfo.cs
|
|
|
|
sources =
|
|
|
|
build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs
|
|
|
|
customs =
|
|
|
|
build_customs = $(addprefix $(srcdir)/, $(customs))
|
|
|
|
EXTRA_DIST = \
|
|
makefile.win32 \
|
|
$(RAW_API) \
|
|
$(ASSEMBLY).config.in \
|
|
AssemblyInfo.cs.in \
|
|
$(METADATA) \
|
|
$(customs) \
|
|
$(sources)
|
|
|
|
$(API): $(srcdir)/$(RAW_API) $(srcdir)/$(METADATA)
|
|
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) \
|
|
--gluelib-name=atksharpglue --glue-filename=glue/generated.c \
|
|
&& touch generated-stamp
|
|
|
|
$(ASSEMBLY): $(build_sources) generated-stamp
|
|
$(CSC) --unsafe /out:$(ASSEMBLY) /target:library $(references) $(build_sources) generated/*.cs
|
|
|